Rubbish. Perhaps this slightly modified code will help you see what is happening more easily:

C:\>type test.pl use Parallel::ForkManager; my @collections = qw (col1 col2 col3 col4 col5); my $max_tasks = 3; $pm = new Parallel::ForkManager($max_tasks); $|++; my $start = time(); for my $collection (@collections) { my $pid = $pm->start and next; printf "Begin processing $collection at %d secs.....\n", time()-$s +tart; sleep rand(5)+2; printf ".... $collection done at %d secs!\n", time()-$start; $pm->finish; } C:\>perl test.pl Begin processing col1 at 0 secs..... Begin processing col2 at 0 secs..... Begin processing col3 at 0 secs..... .... col3 done at 3 secs! Begin processing col4 at 3 secs..... .... col1 done at 4 secs! Begin processing col5 at 4 secs..... .... col2 done at 5 secs! .... col4 done at 6 secs! .... col5 done at 9 secs! C:\>

cheers

tachyon


In reply to Re^3: Parallel tasks by tachyon
in thread Parallel tasks by john.goor

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.