On Mon, Feb 16, 2004 at 02:38:00PM -0800, Dean Arnold wrote: > Guess I should mention: > > When I don't open any connections in the "main" thread > before spawning threads, the problem doesnt occur > (ie, the threads don't walk on each other with install_method). > > The problem only happens when the main thread > opens a connection, and then spawns some threads > that also open connections.
That's because when a new thread is started it clones the perl interpreter and that includes the installed methods. Tim.
