Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

Re^2: Apache::Registry - shared variable?

by tqisjim (Beadle)
on Jun 20, 2013 at 17:16 UTC ( [id://1040004]=note: print w/replies, xml ) Need Help??


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
    Oh, and to answer your other question...
    $VAR1 = { 'MOD_PERL_API_VERSION' => 2, 'MOD_PERL' => 'mod_perl/2.0.4' };

    In Apache config, though:

    PerlResponseHandler ModPerl::Registry

    Our code is "not mod_perl safe", so we were told to use Registry to work around that.

      Our code is "not mod_perl safe", so we were told to use Registry to work around that.

      Yup, Registry is used to run .cgi's under mod_perl but isn't a cure-all, it won't magically make sure you're using CGI.pm correctly or that you're Coping with Scoping -- see (this which you probably already saw) for some issue CGI to mod_perl Porting. mod_perl Coding guidelines and tweak your code

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1040004]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others contemplating the Monastery: (5)
As of 2024-04-23 09:42 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found