Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Re: Speeding up stalled script

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


in reply to Speeding up stalled script

Below, using the MCE::Flow model for ease of passing MCE options and code block. This will increase performance for $input1 by 2.5x or more.

use MCE::Flow; my $input1 = shift @ARGV; my @lengths; mce_flow_f { chunk_size => '2m', max_workers => 'auto', use_slurpio => 1, gather => \@lengths }, sub { my ($mce, $slurp_ref, $chunk_id) = @_; my (@chunk_lengths); open my $IN1, '<', $slurp_ref; while (<$IN1>) { chomp; push @chunk_lengths, length $_ unless />/; } close $IN1; 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://1116572]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others taking refuge in the Monastery: (4)
As of 2024-04-24 00:16 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found