in reply to nonblocking but leaking...

It's not obvious to me what's up (though somebody else may catch something), but if I had this problem, I might put some debugging code after each client request that does a dump of all of the variables in my code (with Devel::Symdump and/or Data::Dumper or some such). Is it possible that %sessions is growing? If you've ruled out all of your own variables, there's probably something more sinister going on...

Replies are listed 'Best First'.
Re: Re: nonblocking but leaking...
by smackdab (Pilgrim) on Mar 30, 2002 at 04:55 UTC
    Devel::Symdump didn't do much for me, but Data::Dumper is pretty cool. It pointed out that %sessions was growing, and I would have bet a million that it was fixed...unfortunately not ;-(

    Thanks for suggesting it ! It gives me an area to explore as I was stuck w/o any idea of how to proceed...