Do it the same way that you did it in Korn. "Having to run through data and process it in chunks" does not mean nor does it imply that it would be beneficial, much less "faster," to process those chunks in parallel. Just write a simple Perl script that takes two input parameters indicating which slice of the data (start and end) you want to process "this time." Run that simple Perl command one at a time, or use "&" in Unix/Linux shell to launch multiple jobs =if= you can plainly see that two jobs finish in-parallel in noticeably less than twice the time. Since most data processing is I/O-constrained, multithreading has limited use and should not be reached-for instinctively.

In reply to Re: Child Process as a Function by Anonymous Monk
in thread Child Process as a Function by pgduke65

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.