Which is the way that I can reclaim memory back from my Perl script and/or to prevent perl from memory management pooling?
|
1
|
|||||
|
|
|
The most effective method is to have plenty of virtual memory, so that memory that perl has allocated but is not frequently using just gets paged out. Other than that, it is extremely difficult to keep perl from just allocating more memory over time...not because it is leaked, but because perl really likes to keep things allocated in case they are used again. A small codebase with fairly consistent string sizes will top out after a bit, but that is an exceptional case. Under apache, the historic technique has been to kill off a process when it reaches a certain size, or after a certain number of requests. This doesn't work so well with threaded MPMs... |
|||
|
|
|
|
As answered on a parallel question : In general, you cannot expect perl to release memory to the OS before the script is finished/terminated. Upon termination all the memory allocated is given back to the OS, but that's an OS feature and isn't Perl-specific. So you have a limited number of options if you have a long-running script :
|
||
|
|
|
|
Undef often, depth-first. |
||
|
|
|
Perl "supports" returning memory to the operating system if the operating system is willing to take that memory back. I use the quotes because, IIRC, Perl does not promise when it will give that memory back. Perl currently does promise when destructors will run, when objects will be deallocated (and, especially, in what order that will happen). But deallocated memory goes to a pool for Perl to use later and that memory -- eventually -- is released to the operating system if the operating system supports it. |
||
|
|
