Hi We have been using IPC::Cache for this for years, but it does not store typeglobs (filehandlers, sockets etc) Forcing us to use local unix sockets to communicate with the backend daemon. This mean we always have to have a daemon node on every web-server instead of just a single node.
I do not see IPC::MMA store typeglobs either, is it faster? We have our own workaround using IPC::SysV and IPC::Msg, they are extremely fast compared to IPC::Cache, but has awkward hash key management I like to drop if we find something faster. Thanks -- Morten Bjoernsvik, Experian Decision Analytics, Oslo, Norway. -----Original Message----- From: macke...@animalhead.com [mailto:macke...@animalhead.com] Sent: 3. februar 2010 18:18 To: m...@normalperson.e4ward.com Cc: modperl@perl.apache.org Subject: Re: global variable I rewrote IPC::MMA from an earlier CPAN module so that I could use shared memory among Apache children. You can read about it at http://search.cpan.org/~mackenna/IPC-MMA-0.6/MMA.pod On Feb 2, 2010, at 9:45 PM, m...@normalperson.e4ward.com wrote: > Hello, > > Is there a method to setup a global variable for all modperl child > processes? > Also this variable will be updated sometime, when it get updated, all > processes will know it. > > Thanks.