RE: Shared Dirty memory of Apache parent process

2014-09-17 Thread Mark Hedges
From: Nageswara rao Gurram [mailto:nageshgurra...@gmail.com] Sent: Tuesday, September 16, 2014 10:51 AM Hi, I am modifying(infact intializing) the global variable declared in start up with child processes..When every child process tries to modify it I think it should come as private

RE: lost directory indexes

2014-09-17 Thread Mark Hedges
On Mon, Sep 15, 2014 at 10:03:35PM -0400, Joseph Schaefer wrote: You have to recompile mod perl so its response handler hook runs before mod dir's. Have them run first or really first instead of middle. Could you XS-bind mod_dir and use it directly if there were no further path args after the

Re: Shared Dirty memory of Apache parent process

2014-09-17 Thread Perrin Harkins
On Wed, Sep 17, 2014 at 1:18 PM, Mark Hedges mark.hed...@ticketmaster.com wrote: For example, you could use a tied DBM/MLDBM hash, DBD::SQLite or another file-based database with access locking for your cache, and save it in a shared memory filesystem like /dev/shm. I would suggest that too,