in reply to Re: Re: Re: debugging mod_perl?
in thread debugging mod_perl?

That's the question I'm trying to answer... sometimes I'll request the page and it will just sit there... I'll never get a reply (this from a process that should reply almost instantly.) I can't find any loops it could concievably be getting stuck in.



My code doesn't have bugs, it just develops random features.

Flame ~ Lead Programmer: GMS (DOWN) | GMS (DOWN)

Replies are listed 'Best First'.
Re: Re: Re: Re: Re: debugging mod_perl?
by perrin (Chancellor) on May 19, 2003 at 05:16 UTC
    That really sounds like a problem with scoping of Apache::Session objects to me. Try removing the session code or explicitly undef'ing your session object at the end of the request. Or put in some warnings in Apache::Session to see if DESTROY is being called.
      I do use an explicit undef immediately after I finish all other processing. Actually it's an explicit untie, but it amounts to the same thing.



      My code doesn't have bugs, it just develops random features.

      Flame ~ Lead Programmer: GMS (DOWN) | GMS (DOWN)