in reply to Re: How to share huge data structure between threads?
in thread How to share huge data structure between threads?

Looks interesting, but if $obj goes out of scope created object will be destroyed (reference counter is zero and so variable can be garbage collected) and can't be restored from stored address. This occurs eg. if variable is created in one thread and should be used in other one.

  • Comment on Re:^2 How to share huge data structure between threads?