A question regarding mod_perl. I've written one main
script which I'm using for several different purposes.
For each different case, first I declare a glogal hash
'our %var', then I require a config file which populates
the hash with the values I need for this situation.
When using mod_perl, I've heard that it's bad to
declare global variables and require files (It can
cause memory leaks). Is this in fact a problem?
If so, is there other ways to handle it? Thanks.