in reply to Does using globals via our() in mod_perl scripts lead to apache child size growth?
That would be strange as "our" is just a scoping mechanism and doesn't allocate anything. How are your vars "shared among packages via our()"? Are they all in the same file? I think our() is a red herring in this case. Perhaps Apache leaks because of whatever you're doing with the package globals, but that has nothing to do with our.
|
|---|