On Tue, 2006-06-13 at 08:59 -0400, Anthony Heading wrote: > What I understand is happening is that Apache2::Reload is causing (as > designed) MyClass.pm to be recompiled, but perhaps into some fresh new > opaque package namespace and the old namespace is cleared out?
No, it's just a normal recompile. However, Perl doesn't really support recompiling. Doing sneaky things like overload, or even some basic closure stuff, can break it. That's another reason why Apache::Reload is not considered safe for production use. - Perrin