vote up 0 vote down star
1

Which is the way that I can reclaim memory back from my Perl script and/or to prevent perl from memory management pooling?

flag
3  
I'm tempted to say "kill it" and/or "don't run it in the first place" :) What do you mean by "memory management pooling"? Your host OS may influence responses here too. – martin clayton Nov 3 at 7:36

4 Answers

vote up 6 vote down

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...

link|flag
vote up 5 vote down

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 :

  • You delegate memory-intensive parts to child processes. This way the memory will be freed when each part is finished. The price to pay is IPC communications.
  • You use your own memory-managed structures, usually based on Tie. The price to pay is to handle the load/store to/from backstore if you structure isn't a simple one (even a standard NDBM-based Hash is simple but quite powerful though).
  • You use you memory as a precious ressource, and optimize its usage (by using smaller constructs, enabling memory reuse, etc).
link|flag
vote up 1 vote down

Undef often, depth-first.

link|flag
Depth-first shouldn't make any difference, unless you have other references to the deep thingies. – ysth Nov 3 at 17:08
vote up 1 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.