Skip to content

Instantly share code, notes, and snippets.

@tene
Created November 18, 2008 21:46
Show Gist options
  • Save tene/26291 to your computer and use it in GitHub Desktop.
Save tene/26291 to your computer and use it in GitHub Desktop.
[sweeks@kweh ~]$ perl slasho.pl
Rate without with
without 1468429/s -- -4%
with 1536098/s 5% --
#!/usr/bin/perl
use Benchmark qw(:all :hireswallclock);
my $var = 'text';
cmpthese( 10000000, {
without => sub {
my $x = 'omg text lol';
$x =~ s/$var/wtf/;
},
with => sub {
my $x = 'omg text lol';
$x =~ s/$var/wtf/o;
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment