Bencher-Scenarios-PerinciCmdLine
view release on metacpan or search on metacpan
lib/Bencher/Scenario/PerinciCmdLine/InputStream.pm view on Meta::CPAN
package Bencher::Scenario::PerinciCmdLine::InputStream;
our $DATE = '2017-01-25'; # DATE
our $VERSION = '0.03'; # VERSION
use 5.010001;
use strict;
use warnings;
use File::Slurper qw(write_text);
use File::Temp qw(tempdir);
use Perinci::CmdLine::Gen qw(gen_pericmd_script);
my $tempdir;
our $scenario = {
summary => 'Benchmark input stream vs raw Perl I/O',
description => <<'_',
1mil lines input data, short line ("1"), each line is chomped.
Conclusion: about 4.7 times slower on my PC (1.6mil lines/sec vs 7.5mil).
_
modules => {
},
precision => 2,
participants => [
],
before_list_participants => sub {
my %args = @_;
return if $tempdir;
my $keep = $ENV{DEBUG_KEEP_TEMPDIR} ? 1:0;
$tempdir = tempdir(CLEANUP => !$keep);
my $sc = $args{scenario};
my $pp = $sc->{participants};
# produce a 1-mil line text file
open my $fh, ">$tempdir/input";
for (1..1000_000) { print $fh "$_\n" }
close $fh;
splice @$pp, 0;
for my $cmdline (qw/rawperl Inline Lite Classic/) {
my $progname = "count-lines-$cmdline";
my $progpath = "$tempdir/$progname";
if ($cmdline eq 'rawperl') {
write_text($progpath, "#!$^X\n" . <<'_');
my $num = 0; while (<>) { chomp; $num++ } print $num, "\n";
_
chmod 0755, $progpath;
} else {
my $res = gen_pericmd_script(
url => "/Perinci/Examples/Stream/count_lines",
cmdline => "Perinci::CmdLine::Lite",
output_file => $progpath,
);
die "Can't create $progpath: $res->[0] - $res->[1]"
unless $res->[0] == 200;
}
push @$pp, {
type => 'command',
name => $progname,
cmdline => "$progpath < $tempdir/input",
};
}
my $i = 0; for (@$pp) { $_->{seq} = $i++ }
},
};
1;
# ABSTRACT: Benchmark input stream vs raw Perl I/O
__END__
=pod
=encoding UTF-8
=head1 NAME
Bencher::Scenario::PerinciCmdLine::InputStream - Benchmark input stream vs raw Perl I/O
=head1 VERSION
This document describes version 0.03 of Bencher::Scenario::PerinciCmdLine::InputStream (from Perl distribution Bencher-Scenarios-PerinciCmdLine), released on 2017-01-25.
=head1 SYNOPSIS
To run benchmark with default option:
% bencher -m PerinciCmdLine::InputStream
For more options (dump scenario, list/include/exclude/add participants, list/include/exclude/add datasets, etc), see L<bencher> or run C<bencher --help>.
=head1 DESCRIPTION
1mil lines input data, short line ("1"), each line is chomped.
Conclusion: about 4.7 times slower on my PC (1.6mil lines/sec vs 7.5mil).
Packaging a benchmark script as a Bencher scenario makes it convenient to include/exclude/add participants/datasets (either via CLI or Perl code), send the result to a central repository, among others . See L<Bencher> and L<bencher> (CLI) for more de...
=head1 BENCHMARK PARTICIPANTS
=over
=back
( run in 2.611 seconds using v1.01-cache-2.11-cpan-cdf2f3d4e48 )