in reply to Re^2: Hash value sorting
in thread Hash value sorting

Then the following should work:
my %counts = %{ $self->{_counts} }; my @sorted_keys = sort { $counts{$a} <=> $counts{$b} } keys %counts;

And sort by counts (ascending).