in reply to Help !! problems sharing a nested hash across threads
I had this same problem a little while ago. The problem is that each of the hash elements is a variable, so each element in the hash must be shared--you can't simply share the top level of the hash to share all the items inside it. I can't tell you a simple way around this, though. I switched strategies for my problem and simplified the data structure so I didn't have to try to manage the housekeeping of sharing all the hash elements.
...roboticus
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Help !! problems sharing a nested hash across threads
by stevehicks (Sexton) on Aug 18, 2010 at 14:06 UTC | |
by james2vegas (Chaplain) on Aug 18, 2010 at 22:39 UTC |