in reply to How do you load configuration variables
then in your scripts :package SA::Config; use strict; BEGIN { require Exporter; @SA::Config::ISA = qw(Exporter); @SA::Config::EXPORT = qw(%c); } our %c = ( var1 => '/blah', logDir => '/var/log' ); 1;
This way i.e when storing as HASH u don't clutter the namespace and config variable usage is easy spotted.. Faster way can be also to place all your virables in file and then "require" them, but this has some disadvantages.. (One more thing i do is separate utilities functions into separate Utils.pm module..).use SA::Config qw(%c);
this way u can have common lib directory for all your projects w/o having problem between them..Project1::Config Project2::Config ... etc..
|
---|