in reply to Re: mod_perl namespace
in thread mod_perl namespace

So, it looks like you have to require "the file" not use() the module to accomplish this. This looks impractical to me.

Replies are listed 'Best First'.
Re^3: mod_perl namespace
by pajout (Curate) on Jul 03, 2007 at 13:48 UTC
    No. I assume that @INC contains both paths (.../applicationX/perl-lib, .../applicationY/perl-lib) and modules are used:
    #for X application use APPX::MyModule;
      ah, ok :)