in reply to Re: A more memory efficient storage structure?
in thread A more memory efficient storage structure?
Do be aware that Devel::Size does count shared data in part of its size calculation when figuring out how big what you're checking is, but it only counts it once per call, so if the two hashes share some data, and they might, pass them in together for a correct aggregate total. Something like:
though that'll add in a few dozen bytes for the two refs and the anon array.print total_size([\%hash1, \%hash2]);
Also, don't rule out the possibility that there's a lot of scrap memory hanging around that Perl's not cleaned up after quite yet, or that you've not noticed.
In Section
Seekers of Perl Wisdom