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


in reply to Parallel processing with ForkManager

Parallel::ForkManager is certainly a good tool for managing a bunch of processes all under the control of a single "master" process which, in your case, would be the one that reads the 100MB file. However, you need to be careful.

Things to consider include:

  • Comment on Re: Parallel processing with ForkManager