--- Steve Waterbury <[EMAIL PROTECTED]> wrote:
> Karl Putland wrote:
> 
> > ... integrated
> > connection pooling is something that I will need ...
> 
> If PostgreSQL is a possible choice for the database, you might 
> want to check out the psycopg adapter, which does pooling, etc:  
> http://initd.org/software/psycopg
> 

I was acctually thinking about using psycopg myself, but
the connection pool should be generic enough to allow any
dbapi compliant adapter to be used.  Also I want to have
multiple connections, so that each thread can commit/rollback
independantly.  With psycopg, that would be using serialize=1
I don't know that I care for the connection per cursor idea
that psycopg uses if serialize=0.  This non serialized behavior
is not what I am looking for since I want to control the
commit/rollback at the transaction level regardless of
the number of cursors that get used during the transaction.

For the time being I was going to prototype the app frist,
then plug in connection pooling to increase performance.
So it may be a few weeks before I have anything worthwhile
to share.

--Karl


__________________________________________________
Do You Yahoo!?
Yahoo! Greetings - send holiday greetings for Easter, Passover
http://greetings.yahoo.com/

_______________________________________________
Webware-discuss mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/webware-discuss

Reply via email to