in reply to Re: Apache::Registry - shared variable?
in thread Apache::Registry - shared variable?
Also, one of Apache::Registry's shortcomings was a confusing and somewhat incomplete approach to sharing variables among sessions. Since the code is cached, the variables aren't automatically re-initialized each time the script is run. This might solve your problem:
my $foo ; ## usually ok in perl my $foo = undef ; ## an Apache::Registry requirement?
If you're not committed to Apache::Registry. Consider an alternative. Also, the mod_perl mailing list: http://perl.apache.org
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Apache::Registry - shared variable?
by DaisyLou (Sexton) on Jun 20, 2013 at 20:32 UTC | |
by Anonymous Monk on Jun 21, 2013 at 07:44 UTC |