in reply to Re^2: how to create shared hashes of arrays
in thread how to create shared hashes of arrays

got it!!! i was trying a few things and this one worked... $my_hash{$key} = &share([]); push(@{$my_hash{$key}},@{$arr_ref}); --Sumit
  • Comment on Re^3: how to create shared hashes of arrays