$foo eq ''
), the slowest is the regular expression ($foo =~ /^$/
):
This file contains 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
#!/usr/bin/env perl | |
use strict; | |
use warnings; | |
use Benchmark ( 'cmpthese' ); | |
my $foo = ''; | |
cmpthese( 10000000, { | |
'direct' => sub { return $foo eq '' }, | |
'length' => sub { return length $foo }, | |
'regexp' => sub { return $foo =~ /^$/ }, | |
}); | |
$foo = 'something'; | |
cmpthese( 10000000, { | |
'direct' => sub { return $foo eq '' }, | |
'length' => sub { return length $foo }, | |
'regexp' => sub { return $foo =~ /^$/ }, | |
}); |
My own results:
Rate regexp direct length regexp 4219409/s -- -76% -78% direct 17543860/s 316% -- -7% length 18867925/s 347% 8% -- Rate regexp length direct regexp 5128205/s -- -73% -74% length 18867925/s 268% -- -6% direct 20000000/s 290% 6% --