I'm building %grouped from %uniq_c, where %grouped contains the key/value pairs generated by splitting %uniq_c's key IF %uniq_c's value is high enough. It's fairly efficient, but I'd like to do better.
%uniq_c = (
'foo:baz' => 3,
'foo:quux' => 12,
'bar:corge' => 15,
'bar:fred' => 8,
);
foreach my $gv (keys %uniq_c) {
if( $uniq_c{$gv} >= 10 ) {
my ($g, $v) = split /:/, $gv, 2;
push( @{$grouped{$g}}, $v );
}
}
I think there are three string copies happening per loop iteration; 1 for $g and 2 for $v. Is there a way to eliminate one of the $v copies, or better yet, a $v and a $g copy (some sort of string slicing perhaps)?
For reference, Data::Dump::dump(%grouped) produces the following:
(
"bar", ["corge"],
"foo", ["quux"],
)