On 5/4/07, Will Fould <[EMAIL PROTECTED]> wrote:
Can lists and other global objects created at apache startup be altered as an *indirect* result of child processes (i.e. some type of semaphore/listener scheme?).
Are you asking if changing a perl data structure in one process will affect it in another process? No, it won't. If you want that, you need to use a database or other shared data storage. - Perrin