Created
December 12, 2011 08:35
-
-
Save nihen/1465943 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use Benchmark qw/cmpthese/; | |
my $hash = +{ | |
id => 123, | |
mail => '[email protected]', | |
}; | |
my @keys = qw/id mail/; | |
cmpthese(-1, { | |
slice => sub { | |
join ', ', @$hash{@keys}; | |
}, | |
map => sub { | |
join ', ', map { $hash->{$_} } @keys; | |
}, | |
}); | |
============================== | |
Rate map slice | |
map 771011/s -- -60% | |
slice 1927529/s 150% -- |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment