Hi I've created a script that is checking the status of an ASE-server. It's running in an infinitive loop:
1. Connect to the database 2. Doing som checks... 3. Disconnecting from the db 4. Sleeping for avile 5. <Doing all again (goto 1)> I found that the perl prosess is using about 4k more memory for each time it runs the loop. If the script runs once on hour it will use about 3000k more memory after one month... The script is supposed to run longer than that... I'm using SybPerl to connect to the database. What can I do to avoid the memory leak? Rune