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


in reply to Re^2: mod_perl2 interactive startup
in thread mod_perl2 interactive startup

The perl interpreter is not reset. If you put something in a global, it will still be there during the restart.

Replies are listed 'Best First'.
Re^4: mod_perl2 interactive startup
by amino (Initiate) on Aug 18, 2009 at 18:59 UTC
    How do you do that?

    I tried saving data in a global in the startup.pl and in a package global but when the restart happens they are uninitialized.

    My tests and this line, "During the restart, Perl is completely destroyed and started again." from here leave me at a loss to how to do that.
      I thought it worked to use $My::Variable, but maybe I'm remembering it wrong.