![]() |
|
Come for the quick hacks, stay for the epiphanies. | |
PerlMonks |
Re^3: Out of Memory Error -- Possible Leak?by robin (Chaplain) |
on Dec 15, 2005 at 12:37 UTC ( #516937=note: print w/replies, xml ) | Need Help?? |
That isn't possible, because Perl doesn't use a separate garbage collector. It simply reference-counts all its data (scalars, arrays, hashes etc) and frees an item when its reference count drops to zero.
(This is why circular data structures cause memory leaks.)
In Section
Seekers of Perl Wisdom
|
|