NAME

Bencher::Scenario::LogAny - Benchmark Log::Any

VERSION

This document describes version 0.03 of Bencher::Scenario::LogAny (from Perl distribution Bencher-Scenario-LogAny), released on 2016-06-27.

SYNOPSIS

To run benchmark with default option:

% bencher -m LogAny

For more options (dump scenario, list/include/exclude/add participants, list/include/exclude/add datasets, etc), see bencher or run bencher --help.

BENCHMARK PARTICIPANTS

  • log_trace (perl_code)

    Code template:

    state $log = do { require Log::Any; Log::Any->get_logger }; $log->trace("")
  • if_trace (perl_code)

    Code template:

    state $log = do { require Log::Any; Log::Any->get_logger }; if ($log->is_trace) {}

SAMPLE BENCHMARK RESULTS

Run on: perl: v5.22.2, CPU: Intel(R) Core(TM) i7-4770 CPU @ 3.40GHz (4 cores), OS: GNU/Linux Debian version 8.0, OS kernel: Linux version 3.16.0-4-amd64.

Benchmark with default options (bencher -m LogAny):

+-------------+-----------+-----------+------------+---------+---------+
| participant | rate (/s) | time (ns) | vs_slowest |  errors | samples |
+-------------+-----------+-----------+------------+---------+---------+
| log_trace   |   2364810 |   422.867 |        1   |   0     |      20 |
| if_trace    |   3000000 |   330     |        1.3 | 8.3e-10 |      20 |
+-------------+-----------+-----------+------------+---------+---------+

DESCRIPTION

Early release. Todos include: benchmark enabled level, adapters, string formatting.

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.

HOMEPAGE

Please visit the project's homepage at https://metacpan.org/release/Bencher-Scenario-LogAny.

SOURCE

Source repository is at https://github.com/perlancar/perl-Bencher-Scenario-LogAny.

BUGS

Please report any bugs or feature requests on the bugtracker website https://rt.cpan.org/Public/Dist/Display.html?Name=Bencher-Scenario-LogAny

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) 2016 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.