##
mce_flow_f {
chunk_size => '24m', max_workers => 1,
use_slurpio => 1,
},
sub {
}, 'Dictionary2GB.txt';
####
use strict;
use warnings;
my $size = 24 * 1024 * 1024;
open my $fh, '<', 'Dictionary2GB.txt' or die "$!";
while ( read( $fh, my $b, $size ) ) {
$b .= <$fh>;
}
close $fh;