On Sun, 2006-04-09 at 22:14 -0500, Frank Wiles wrote: > I'd suggest trying pgpool without Apache::DBI also. Using both you're > essentially pooling twice for no real reason.
Not really. Apache::DBI just provides persistent connections. This pgpool thing is trying to actually share a limited number of connections between a larger set of client processes. Using it with Apache::DBI or DBI->connect_cached() makes sense. - Perrin