in reply to Re^4: Memory utilization and hashes
in thread Memory utilization and hashes
In general, I would not expect the overall memory footprint to decrease when you delete some data structures. Even if some memory has been freed, it will probably not show in these stats (due, among other things, to memory fragmentation). But if you have freed some of it by deleting some hash entries, then there is good chance that your program will be able to reuse the freed memory, so that creating a new hash entry will not increase the overall memory usage.
Update: Fixed wrong link for the Devel::Size module.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^6: Memory utilization and hashes
by bfdi533 (Friar) on Jan 17, 2018 at 22:47 UTC |