- or download this
use MCE::Loop max_workers => 4, chunk_size => 1;
...
} 1..4_000_000;
- or download this
use MCE::Loop max_workers => 4, chunk_size => 'auto';
...
} 1..4_000_000;
- or download this
use MCE::Loop max_workers => 4, chunk_size => 'auto';
...
} '/path/to/four_million_rows.txt';
- or download this
## array non-chunking...: 1m54.467s
## array auto-chunking..: 0m 0.843s 136x
## file auto-chunking..: 0m 0.467s 245x
- or download this
## array non-chunking...: 1m 5.458s
## array auto-chunking..: 0m 0.821s 80x
## file auto-chunking..: 0m 0.411s 159x
- or download this
mce_loop_f {
MCE->last; # immediately leaves the block and input
...
} '/path/to/four_million_rows.txt';
- or download this
## array non-chunking...: 1m 5.384s
## array auto-chunking..: 0m 0.747s 88x
## file auto-chunking..: 0m 0.337s 194x