NAME
Bencher::Scenario::LogGer::NullOutput - Benchmark Log::ger logging speed with the default/null output
VERSION
This document describes version 0.013 of Bencher::Scenario::LogGer::NullOutput (from Perl distribution Bencher-Scenarios-LogGer), released on 2018-12-20.
SYNOPSIS
To run benchmark with default option:
% bencher -m LogGer::NullOutput
For more options (dump scenario, list/include/exclude/add participants, list/include/exclude/add datasets, etc), see bencher or run bencher --help
.
DESCRIPTION
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 Bencher and bencher (CLI) for more details.
BENCHMARKED MODULES
Version numbers shown below are the versions used when running the sample benchmark.
Log::Any 1.707
Log::Contextual 0.007001
Log::Contextual::SimpleLogger 0.007001
Log::Dispatch 2.65
Log::Dispatch::Null 2.65
Log::Dispatchouli 2.015
Log::Fast v2.0.0
Log::Log4perl 1.49
Log::Log4perl::Tiny 1.4.0
Log::ger 0.023
Log::ger::Plugin::MultilevelLog 0.023
Log::ger::Plugin::OptAway 0.006
BENCHMARK PARTICIPANTS
Log::ger-100k_log_trace (command)
Command line:
#TEMPLATE: #perl -MLog::ger -e for(1..100_000) { log_trace(q[]) }
Log::ger-100k_log_is_trace (command)
Command line:
#TEMPLATE: #perl -MLog::ger -e for(1..100_000) { log_is_trace() }
Log::ger+LGP:OptAway-100k_log_trace (command)
Command line:
#TEMPLATE: #perl -MLog::ger::Plugin=OptAway -MLog::ger -e for(1..100_000) { log_trace(q[]) }
Log::ger+LGP:MutilevelLog-100k_log_trace (command)
Command line:
#TEMPLATE: #perl -MLog::ger::Plugin=MultilevelLog -MLog::ger -e for(1..100_000) { log("trace", q[]) }
Log::ger+LGP:MutilevelLog-100k_log_6 (command)
Command line:
#TEMPLATE: #perl -MLog::ger::Plugin=MultilevelLog -MLog::ger -e for(1..100_000) { log(6, q[]) }
Log::Fast-100k_DEBUG (command)
Command line:
#TEMPLATE: #perl -MLog::Fast -e $LOG = Log::Fast->global; $LOG->level("INFO"); for(1..100_000) { $LOG->DEBUG(q()) }
Log::Fast-100k_is_debug (command)
Command line:
#TEMPLATE: #perl -MLog::Fast -e $LOG = Log::Fast->global; for(1..100_000) { $LOG->level() eq "DEBUG" }
Log::Any-no_adapter-100k_log_trace (command)
Command line:
#TEMPLATE: #perl -MLog::Any -e my $log = Log::Any->get_logger; for(1..100_000) { $log->trace(q[]) }
Log::Any-no_adapter-100k_is_trace (command)
Command line:
#TEMPLATE: #perl -MLog::Any -e my $log = Log::Any->get_logger; for(1..100_000) { $log->is_trace }
Log::Any-null_adapter-100k_log_trace (command)
Command line:
#TEMPLATE: #perl -MLog::Any -MLog::Any::Adapter -e Log::Any::Adapter->set(q[Null]); my $log = Log::Any->get_logger; for(1..100_000) { $log->trace(q[]) }
Log::Any-null_adapter-100k_is_trace (command)
Command line:
#TEMPLATE: #perl -MLog::Any -MLog::Any::Adapter -e Log::Any::Adapter->set(q[Null]); my $log = Log::Any->get_logger; for(1..100_000) { $log->is_trace }
Log::Dispatch::Null-100k_debug (command)
Command line:
#TEMPLATE: #perl -MLog::Dispatch -e my $null = Log::Dispatch->new(outputs=>[["Null", min_level=>"debug"]]); for(1..100_000) { $null->debug("") }
Log::Log4perl-easy-100k_trace (command)
Command line:
#TEMPLATE: #perl -MLog::Log4perl=:easy -e Log::Log4perl->easy_init($ERROR); for(1..100_000) { TRACE "" }
Log::Log4perl::Tiny-100k_trace (command)
Command line:
#TEMPLATE: #perl -MLog::Log4perl::Tiny=:easy -e for(1..100_000) { TRACE "" }
Log::Contextual+Log4perl-100k_trace (command)
Command line:
#TEMPLATE: #perl -e use Log::Contextual ":log", "set_logger"; use Log::Log4perl ":easy"; Log::Log4perl->easy_init($DEBUG); my $logger = Log::Log4perl->get_logger; set_logger $logger; for(1..100_000) { log_trace {} }
Log::Contextual+SimpleLogger-100k_trace (command)
Command line:
#TEMPLATE: #perl -MLog::Contextual::SimpleLogger -e use Log::Contextual ":log", -logger=>Log::Contextual::SimpleLogger->new({levels=>["debug"]}); for(1..100_000) { log_trace {} }
Log::Dispatchouli-100k_debug (command)
Command line:
#TEMPLATE: #perl -MLog::Dispatchouli -e $logger = Log::Dispatchouli->new({ident=>"ident", facility=>"facility", to_stdout=>1, debug=>0}); for(1..100_000) { $logger->log_debug("") }
SAMPLE BENCHMARK RESULTS
Run on: perl: v5.26.0, CPU: Intel(R) Core(TM) i5-2400 CPU @ 3.10GHz (4 cores), OS: GNU/Linux LinuxMint version 18.2, OS kernel: Linux version 4.8.0-53-generic.
Benchmark with default options (bencher -m LogGer::NullOutput
):
#table1#
+------------------------------------------+-----------+--------+------------+-----------+---------+
| participant | rate (/s) | time | vs_slowest | errors | samples |
+------------------------------------------+-----------+--------+------------+-----------+---------+
| Log::Dispatch::Null-100k_debug | 0.6 | 1.7 | 1 | 0.0027 | 6 |
| Log::Contextual+Log4perl-100k_trace | 1.5 | 0.65 | 2.6 | 0.0018 | 6 |
| Log::Contextual+SimpleLogger-100k_trace | 1.6 | 0.64 | 2.6 | 0.0035 | 6 |
| Log::Dispatchouli-100k_debug | 4.7 | 0.21 | 7.9 | 0.00084 | 7 |
| Log::Log4perl::Tiny-100k_trace | 7.3 | 0.14 | 12 | 0.00037 | 8 |
| Log::Any-null_adapter-100k_log_trace | 12 | 0.082 | 21 | 0.00018 | 8 |
| Log::Fast-100k_is_debug | 10 | 0.08 | 20 | 0.00093 | 6 |
| Log::Log4perl-easy-100k_trace | 15.1 | 0.0661 | 25.4 | 2.4e-05 | 6 |
| Log::Any-no_adapter-100k_is_trace | 17 | 0.057 | 29 | 0.00018 | 6 |
| Log::Any-null_adapter-100k_is_trace | 19 | 0.054 | 31 | 7.5e-05 | 6 |
| Log::Fast-100k_DEBUG | 20 | 0.05 | 40 | 0.0008 | 9 |
| Log::Any-no_adapter-100k_log_trace | 32 | 0.031 | 53 | 0.00027 | 7 |
| Log::ger+LGP:OptAway-100k_log_trace | 41 | 0.024 | 69 | 7.6e-05 | 8 |
| Log::ger+LGP:MutilevelLog-100k_log_trace | 40 | 0.02 | 70 | 0.00044 | 7 |
| Log::ger+LGP:MutilevelLog-100k_log_6 | 44 | 0.022 | 75 | 0.00017 | 6 |
| Log::ger-100k_log_is_trace | 61 | 0.016 | 100 | 0.00014 | 7 |
| Log::ger-100k_log_trace | 61 | 0.016 | 100 | 8.9e-05 | 6 |
+------------------------------------------+-----------+--------+------------+-----------+---------+
To display as an interactive HTML table on a browser, you can add option --format html+datatables
.
HOMEPAGE
Please visit the project's homepage at https://metacpan.org/release/Bencher-Scenarios-LogGer.
SOURCE
Source repository is at https://github.com/perlancar/perl-Bencher-Scenarios-LogGer.
BUGS
Please report any bugs or feature requests on the bugtracker website https://rt.cpan.org/Public/Dist/Display.html?Name=Bencher-Scenarios-LogGer
When submitting a bug or request, please include a test-file or a patch to an existing test-file that illustrates the bug or desired feature.
AUTHOR
perlancar <perlancar@cpan.org>
COPYRIGHT AND LICENSE
This software is copyright (c) 2018, 2017 by perlancar@cpan.org.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.