Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

Re: Speeding up stalled script

by marioroy (Prior)
on Feb 13, 2015 at 05:33 UTC ( [id://1116574]=note: print w/replies, xml ) Need Help??


in reply to Speeding up stalled script

The following is another way. The block receives an array reference. Between the two, slurping is faster 2.023s versus 2.904s for a FASTA file containing 13.7 million lines excluding headers.

use MCE::Flow; my $input1 = shift @ARGV; my @lengths; mce_flow_f { chunk_size => '2m', max_workers => 'auto', gather => \@lengths }, sub { my ($mce, $chunk_ref, $chunk_id) = @_; my (@chunk_lengths); chomp @{ $chunk_ref }; foreach (@{ $chunk_ref }) { push @chunk_lengths, length $_ unless />/; } MCE->gather(@chunk_lengths); }, $input1; MCE::Flow::finish; print scalar @lengths, "\n";

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1116574]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others studying the Monastery: (4)
As of 2024-04-25 07:06 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found