Given the variety, I figured some benchmarks might be appropriate. Note, please double-check the benchmarking code before trusting these numbers: I whipped the script up in a hurry.
#!/usr/bin/env perl
use 5.012;
use strict;
use warnings;
use Benchmark qw( cmpthese );
use constant DATA_SIZE => 1000;
cmpthese( -1, {
right_thing => sub { do_the_right_thing ( make_data(rt => DATA_SIZE) ) },
re_extract => sub { re_extract ( make_data(re => DATA_SIZE) ) },
split_extract => sub { split_extract ( make_data(se => DATA_SIZE) ) },
schxfrom_re => sub { schxform_re ( make_data(sx => DATA_SIZE) ) },
nop => sub { nop ( make_data(nl => DATA_SIZE) ) },
});
sub do_the_right_thing {
my ($DATA) = @_;
no warnings 'numeric';
[ sort { $a <=> $b } @$DATA ];
}
sub re_extract {
my ($DATA) = @_;
my $re = qr/^([0-9]+):/;
[ sort { ($a =~ $re)[0] <=> ($b =~ $re)[0] } @$DATA ];
}
sub split_extract {
my ($DATA) = @_;
[
sort {
my ($x, $y) = map split(/:/, $_, 2), $a, $b;
$x <=> $y
} @$DATA
];
}
sub schxform_re {
my ($DATA) = @_;
[
map $_->[0],
sort { $a->[1] <=> $b->[1] }
map { [ $_, m/^([0-9]+):/ ] } @$DATA
];
}
sub nop {
my ($DATA) = @_;
[ @$DATA ];
}
sub make_data {
state %cache;
my ($k, $n) = @_;
unless (exists $cache{$k}) {
$cache{ $k } = [
map
sprintf('%d:%f', int(rand 10_000), rand),
1 .. $n
];
}
return $cache{ $k };
}
Results
Rate re_extract schxfrom_re split_extract right_thing nop
re_extract 32.1/s -- -85% -92% -98% -99%
schxfrom_re 213/s 565% -- -46% -87% -94%
split_extract 392/s 1121% 84% -- -76% -89%
right_thing 1614/s 4933% 657% 312% -- -53%
nop 3459/s 10685% 1522% 783% 114% --