in reply to Re: How do you parallelize STDIN for large file processing?
in thread How do you parallelize STDIN for large file processing?

Would Tie::File be helpful?
if you knew which line it came from you could slot right back in where it started.

tie @array, 'Tie::File', filename or die ...;

### at the end
my ($Toad, $LineIn) = $MagicWand -> HocusPocus
$array[$LineIn] = $Toad;
http://search.cpan.org/~mjd/Tie-File-0.96/lib/Tie/File.pm
  • Comment on Re^2: How do you parallelize STDIN for large file processing?

Replies are listed 'Best First'.
Re^3: How do you parallelize STDIN for large file processing?
by ikegami (Patriarch) on Feb 06, 2009 at 05:32 UTC
    Definitely not. The goal is to speed things up, not set the hard drive on fire.