Horrible handler memory leak

2002-12-02 Thread Hann, Brian
I'm having a problem with a fairly simple handler eating up resources and I'm wondering if there's any easy way to track it down. The handler fetches data from an Oracle database and displays it using Template-Toolkit. Nothing fancy, just some display logic, etc. The thing is, when I try to

Re: Horrible handler memory leak

2002-12-02 Thread joe
Brian, Are you trying to read the entire 8000 records into a single array/hash? You might try splitting the record set into pieces and reuse that array/hash. -- Joe Palladino "Hann, Brian" wrote: > > I'm having a problem with a fairly simple handler > eating up resources and I'm wondering i

Re: Horrible handler memory leak

2002-12-03 Thread Stas Bekman
Hann, Brian wrote: > I'm having a problem with a fairly simple handler eating up resources > and I'm wondering if there's any easy way to track it down. > > The handler fetches data from an Oracle database and displays it > using Template-Toolkit. Nothing fancy, just some display logic, etc. > > >