in reply to Re^2: tracking down a memory leak in $_
in thread tracking down a memory leak in $_
One thing that often bites people is that reading a nested hash can create hash keys and use more memory. For example:
If there was no baz key before, there is now, and that takes some space.$foo{bar}->{baz}->{quux};
|
---|