Re: Child processes/cache question

2007-09-10 Thread David Willams
Excellent. That's it. Thanks! On 9/10/07, William A. Rowe, Jr. <[EMAIL PROTECTED]> wrote: > > David Willams wrote: > > Condition: I'm pre-load sharable data at apache start, but I also have > > different data that is caching itself within child processes.

Child processes/cache question

2007-09-10 Thread David Willams
Condition: I'm pre-load sharable data at apache start, but I also have different data that is caching itself within child processes. Goal: to pre-cache within each process, the data that cannot be cached within the shared space. Not sure if I'm asking this correctly, but is there a method by which

Re: global vs multi-process

2007-09-05 Thread David Willams
ssible for apache to somehow manage a hash that can, at the same time, be available (read-only) to child processes? - D On 9/5/07, Perrin Harkins <[EMAIL PROTECTED]> wrote: > > On 9/6/07, David Willams <[EMAIL PROTECTED]> wrote: > > When the translation happens on a

Re: global vs multi-process

2007-09-05 Thread David Willams
er this happens. Furthermore, the volume of these translations are rising (thousands per hour) which is why I want to just globalize CACHE and provide a way to update keys perhaps within a separate mechanism. Thanks again On 9/5/07, Perrin Harkins <[EMAIL PROTECTED]> wrote: > > On 9/

global vs multi-process

2007-09-05 Thread David Willams
Hello modperl, I'm coming to grips with multi-process vs. multi-threaded limitations (and benefits!). For example, during start up, for sharing read-only data among child processes, we do something like: %CACHE = get_data( ); Child processes cannot update %CACHE, so what other apache methods or