Release Apache module

2011-01-13 Thread Kim Goldov
I've written a mod_perl application, "mod_auth_any", that allows users to be authenticated by any authentication mechanism or provider. It currently supports Shibboleth, OpenID (Google), LDAP, and basic auth. Are there published guidelines on how to package modules that are based on mod_perl? The 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