in reply to Re^2: Maximum length of hash key ?
in thread Maximum length of hash key ?

For ex. %h=( a=>123, b=>123, c=>12); the output will be : %h =( "a;b"=>123 ,c=>12);
... sounds like an inverted list, to me.
%h = { "123" => [ "a", "b" ], "12" => [ "c" ] };