Re: Dollar Self Storage (aka mod_perl children sharing/updating data on a schedule)

2011-01-26 Thread Jeff Anderson
Greetings, First, a big thank you to everyone for these great suggestions and corrections. The idea to send a HUP signal to the parent process works fine under the pre-forked server model, but does not work at until under the threaded worker model. So signals are right out. I probably forgot to m

Re: Dollar Self Storage (aka mod_perl children sharing/updating data on a schedule)

2011-01-13 Thread Perrin Harkins
Hi Jeff, > I am looking to set up a mod_perl handler which keep track of the > count of requests coming in. Each child process will store this data > in local memory and after 5-10 minutes have passed, each child process > will merge its data into a central database, the goal being that each > chi

Re: Dollar Self Storage (aka mod_perl children sharing/updating data on a schedule)

2011-01-13 Thread Ryan Gies
On 01/03/2011 04:48 PM, Jeff Anderson wrote: the goal being that each child will not have to hit a database for every request. If the reason behind not hitting the database on each request is because you don't want to impact your page-response times, know that the Cleanup phase happens aft

Re: Dollar Self Storage (aka mod_perl children sharing/updating data on a schedule)

2011-01-13 Thread Torsten Förtsch
On Monday, January 03, 2011 22:48:53 Jeff Anderson wrote: > I am looking to set up a mod_perl handler which keep track of the > count of requests coming in. Each child process will store this data > in local memory and after 5-10 minutes have passed, each child process > will merge its data into a

Re: Dollar Self Storage (aka mod_perl children sharing/updating data on a schedule)

2011-01-07 Thread Cosimo Streppone
On Mon, 03 Jan 2011 22:48:53 +0100, Jeff Anderson wrote: I am looking to set up a mod_perl handler which keep track of the count of requests coming in. Each child process will store this data in local memory and after 5-10 minutes have passed, each child process will merge its data into a cen

Dollar Self Storage (aka mod_perl children sharing/updating data on a schedule)

2011-01-07 Thread Jeff Anderson
Greetings, I am looking to set up a mod_perl handler which keep track of the count of requests coming in. Each child process will store this data in local memory and after 5-10 minutes have passed, each child process will merge its data into a central database, the goal being that each child will