You are viewing a plain text version of this content. The canonical link for it is here.
Posted to modperl@perl.apache.org by Perrin Harkins <pe...@elem.com> on 2003/07/21 21:23:29 UTC

RE: Need help, Global Hash corruption under mod_perl in perl 5.8.0!?!

On Mon, 2003-07-21 at 02:51, Влад Сафронов wrote:
> I have done code deparsing of eperl scripts saved in Cache
> all started with
> 
> package Parse::ePerl;              
> use strict 'refs';                 
> print(qq[<?xml version="1.0"?>\n]);
> 
> so they all have the same package name. Can it cause a bug?
> Ap::Registry keeps different package name for every script..

It means that all globals and subs are shared between all of your
scripts.  It could cause a bug if you use the same names for globals or
subs in multiple scripts.

- Perrin