http://www.perlmonks.org?node_id=1065987


in reply to Re^4: Threads memory consumption
in thread Threads memory consumption

Yes you can, see IPC::Shareable and IPC::ShareLite, but I don't recommend you to use these -- refactor your program so it wouldn't require shared variables, or use some message passing module instead.

Replies are listed 'Best First'.
Re^6: Threads memory consumption
by mojo2405 (Acolyte) on Dec 08, 2013 at 09:18 UTC
    Can you recommend on a message passing module I can use ?
      It depends on your environment and requirements. Generally if you have any messaging system deployed (ActiveMQ, RabbitMQ, Spread Toolkit, Redis, etc) just use it. Or you can try ZMQ
Re^6: Threads memory consumption
by mojo2405 (Acolyte) on Dec 19, 2013 at 19:09 UTC
    Hey, Do you know if I can share a hash ? or even an object ? I want to share and lock an object that exist inside a hash - if accessed.. Thanks