in reply to Re^2: Shared hash within shared hash of hash???
in thread Shared hash within shared hash of hash???

I'm not sure about the first one, as for the second -- why don't you try it?
  • Comment on Re^3: Shared hash within shared hash of hash???

Replies are listed 'Best First'.
Re^4: Shared hash within shared hash of hash???
by ISAI student (Scribe) on Jan 02, 2013 at 14:53 UTC
    I did, it seems to work. I am however, wary of corner cases, when threads are involved.
      I did, it seems to work

      That's strange, because for me it didn't work:

      use threads; use threads::shared; my %sa : shared = (); %{$sa{foo}} = (); __END__ Invalid value for shared scalar at share_share.pl line 5.