in reply to Threaded Application Sequencing/Rendezvous

Parallel::ForkManager works well for simple cases, but I don't believe you can mix it with threads.
  • Comment on Re: Threaded Application Sequencing/Rendezvous

Replies are listed 'Best First'.
Re^2: Threaded Application Sequencing/Rendezvous
by learnedbyerror (Monk) on Jul 11, 2012 at 12:09 UTC

    I did consider Parallel::Forkmanager, about a half dozen other fork management modules in CPAN and doing it by forks manually. The need of the individual threads to access a shared corpus of data requires a lot more work than than the threads::shared module. So after a lot of testing with both forks and threads, I decided to go the threads route.

    Thanks, lbe