http://www.perlmonks.org?node_id=474272

BarMeister has asked for the wisdom of the Perl Monks concerning the following question:

Are there any performance benefits/issues with doing the following?

use MyPackage::MySubPackage; MyPackage::MySubPackage::some_function();

...as opposed to...

use MyPackage::MySubPackage; some_function();

I am using mod_perl, use strict/warnings, etc...