Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Re: Freeing memory used by arrays

by Abigail-II (Bishop)
on Dec 04, 2003 at 15:05 UTC ( [id://312209]=note: print w/replies, xml ) Need Help??


in reply to Freeing memory used by arrays

There is a difference between "memory in use by the program" and, "memory claimed by perl from the OS, and not returned". When the program is run, the program needs memory, which is claimed from a pool managed by perl (the binary). If the pool gets empty, perl will claim more memory from the OS. If the program memory is reclaimed by the garbage collector (ref counting in the case of perl5), memory *may* be returned to the pool, or it may be kept around if perl thinks it might be reused. Perl might also return memory to the OS, but it's OS dependent whether that happens at all, and it's certainly not true that whenever the program no longer needs a piece of memory, it's returned to the OS.

If you really need this kind of memory management, you're probably better off programming in C.

Abigail

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://312209]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (4)
As of 2024-04-25 13:35 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found