Re: [postmodern-devel] A question about connection pooling, and the many ways to connect.

2013-03-16 Thread Marijn Haverbeke
Hi Jim, You're right, you have to use local connection and specify that you want them to be pooled. (This model has much less overhead -- a single synchronization point -- than a model where a single handle can be used in a multi-threaded way.) Best, Marijn On Sat, Mar 16, 2013 at 2:32 AM, Jim

[postmodern-devel] A question about connection pooling, and the many ways to connect.

2013-03-15 Thread Jim Barrows
I'm a java developer, and I think I'm expecting something to happen that's not. In Java I setup a pooled connection, and just use it. The connections pool themselves. I had thought that by doing: (setf *database* (connect "PomBanDone" "pombandone" "pombandone" "localhost" :pooled-p T))) that I w