in reply to any way to control a memory leak

Can you give us a little more information?

• How exactly are you 'monitoring' the databases?

• Are you using strict?

• Is your monitoring code running in its own block, with the variables lexically scoped in that block (with my)? That'll make sure that your variables go away when you reach the end of the block.

Replies are listed 'Best First'.
Re: Re: any way to control a memory leak
by rdww (Novice) on Jan 28, 2002 at 20:04 UTC
    the only thing we are doing to the databases from this script is connecting and then disconnecting. Yes I am using strict 'vars'? Yes code is running in it own block and I declare the vars using my? I believe strict for the most part checks for this - please correct me if I am wrong? Thanks much Robert