http://qs321.pair.com?node_id=752292


in reply to Re: Parallel::ForkManager and DBD::mysql, the easy way
in thread Parallel::ForkManager and DBD::mysql, the easy way

Nicely documented. Aside from the use of clone() instead of connect() this is pretty much the other option I mentioned, using InactiveDestroy to disable disconnect() on parent handles in the kid. My experience with doing it this way was not great - inevitably something in a child process would stumble on a parent handle and either try to use it or disconnect it. Either will cause unpredictable mayhem, which is the very worst kind.

-sam

Replies are listed 'Best First'.
Re^3: Parallel::ForkManager and DBD::mysql, the easy way
by ruzam (Curate) on Mar 21, 2009 at 20:51 UTC
    Ya, you've got to keep track of your handles and where they're going to be used.