Connection Pools and DISCARD ALL - Mailing list pgsql-hackers

From Simon Riggs
Subject Connection Pools and DISCARD ALL
Date
Msg-id 1191507082.4223.115.camel@ebony.site
Whole thread Raw
Responses Re: Connection Pools and DISCARD ALL
List pgsql-hackers
There's been a lively discussion on JDBC list recently about how we
handle connection pooling. This has connected a few thoughts in my head.

That's made me think about the PHP interface, which issues a BEGIN; ROLLBACK;
pair every time somebody connects to the pool.

We should have a single/consistent way of starting a new connection to
PostgreSQL when using a session pool.

As committed, DISCARD ALL does everything but cannot be issued inside a
transaction block.

I'd like to propose that DISCARD ALL also issue a ROLLBACK command if it
is issued from within a transaction block. That way whenever we reassign
a session pool connection to another agent we can just issue a single
command from all interfaces, without needing to test what the state of
the connection is beforehand.

--  Simon Riggs 2ndQuadrant  http://www.2ndQuadrant.com



pgsql-hackers by date:

Previous
From: Tom Lane
Date:
Subject: Re: Not *quite* there on ecpg fixes
Next
From: Shane Ambler
Date:
Subject: Re: [SQL] Why does the sequence skip a number with generate_series?