Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

No More Meaningless Benchmarks!

by chromatic (Archbishop)
on Dec 08, 2006 at 21:24 UTC ( [id://588703]=perlmeditation: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    
    use strict;
    ...
            double => \&double
        }
    );
    
  2. or download this
    $ perl bm_string_quoting.pl 2> /dev/null
               Rate single double
    single 476308/s     --    -1%
    double 481758/s     1%     --
    
  3. or download this
    #!/usr/bin/perl
    
    use strict;
    ...
            double => \&double
        }
    );
    
  4. or download this
    $ perl bm_string_quoting.pl 2> /dev/null
               Rate double single
    double 474650/s     --    -2%
    single 483537/s     2%     --
    
  5. or download this
    #!/usr/bin/perl
    
    use Benchmark qw(cmpthese);
    ...
            double => \&double
        }
    );
    
  6. or download this
    perl bm_string_quoting.pl 2> /dev/null
               Rate single double
    single 491116/s     --    -2%
    double 502236/s     2%     --
    
  7. or download this
    #!/usr/bin/perl
    
    use Benchmark qw(cmpthese);
    ...
        }
    );
    sub double { warn "This is a test"; }
    
  8. or download this
    $ perl bm_string_quoting.pl 2> /dev/null
               Rate double single
    double 449265/s     --    -7%
    single 481758/s     7%     --
    
  9. or download this
    #!/usr/bin/perl
    
    use Benchmark qw(cmpthese);
    ...
    );
    sub double { warn "This is a test"; }
    sub single { warn 'This is a test'; }
    
  10. or download this
    $ perl bm_string_quoting.pl 2> /dev/null
               Rate single double
    single 459485/s     --    -0%
    double 460340/s     0%     --
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perlmeditation [id://588703]
Approved by Corion
Front-paged by friedo
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others musing on the Monastery: (7)
As of 2024-04-23 09:12 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found