On Thu, 29 Jul 2004 [EMAIL PROTECTED] wrote: > Well... you cache per-child nominally. It is not out of the realm of > possibility to have a thread-aware version of the DBI library that > handles the connect() and "unconnect()" requests in such a way as to be > real-time-safe but still cache.
The slaves are in different processes, though, not just in different threads. The point is that you do NOT want to open a database connection, call fork(), and then have more than one child try to use the same database connection. They'll be sharing a file descriptor, and if both try to use it at the same time, things will get horribly messed up. Regards, David. _______________________________________________ Visit http://www.mimedefang.org and http://www.canit.ca MIMEDefang mailing list [EMAIL PROTECTED] http://lists.roaringpenguin.com/mailman/listinfo/mimedefang

