in reply to Re: different versions of same Perl module in different Apache vhosts
in thread different versions of same Perl module in different Apache vhosts

Nope, this is a persistent Perl interpreter. Once it resolves a certain module it doesn't look again. So, whichever version of "My::Module" gets accessed first is the only that will ever get loaded.
  • Comment on Re^2: different versions of same Perl module in different Apache vhosts

Replies are listed 'Best First'.
Re^3: different versions of same Perl module in different Apache vhosts
by agaffney (Beadle) on Jun 07, 2004 at 01:32 UTC
    What if I were to use Apache::Reload in addition to modifiying @INC for the separate vhosts? Would mod_perl look for the specific file it loaded before or would it search through @INC for the module to check if it needs to be reloaded?