in reply to Strange results in modperl and Apache

Use Apache::Reload for reload your modules which were changed:
package YourPackage; use Apache::Reload; . . . 1;
and Apache will check modification time of your modules and reload them.
      
--------------------------------
SV* sv_bless(SV* sv, HV* stash);