http://www.perlmonks.org?node_id=985401


in reply to Perl crashing with Parallel::ForkManager and WWW::Mechanize

My personal recommendation is to avoid fork() on Windows, either in favour of Thread::Queue and threads or in favour of AnyEvent.

Personally I find that using threads requires fewer modifications to an existing single-threaded program.