in reply to Re: mod_perl memory issues...
in thread mod_perl memory issues...
Perl does not provide a way to effectively remove compiled code from memory
Symbol::delete_package() can remove a package from memory, including compiled subroutines in the package. However it doesn't do any of the other cleanup you'd expect (such as removing any files from %INC, or unloading XS modules), and it wouldn't be straightforward to use it with Apache::Registry in any case.