in reply to Re: Parallel Processing in Perl
in thread Parallel Processing in Perl

This node falls below the community's threshold of quality. You may see it by logging in.

Replies are listed 'Best First'.
Re^3: Parallel Processing in Perl
by Corion (Patriarch) on Oct 20, 2008 at 11:36 UTC

    While it's a common error description, "it doesn't work" does not help us with diagnosing what exactly does not work, and how it doesn't work. If you need to collect all results from the work of the children in the parent process, you will either have to use threads or you will have to create a communication channel between the children and the parent process, for example by writing the information to a file and by then reading that information in the parent process as the children exit.