On Tue, 2005-08-23 at 17:23 +1000, Badai Aqrandista wrote: > How do I maintain the size of the shared memory between apache children? > What cause a memory page to be copied (not shared) from perl's point of > view?
Anything that writes to memory -- modifying any variable (even just reading one in a different context) or compiling some code are the most common things. There's a bit more here: http://modperlbook.com/html/ch10_01.html - Perrin