I'm no internals expert, but maybe you could sprinkle some print statements to print out your hash sizes, every now and then, and look for a pattern.
#!/usr/bin/perl
use Devel::Size 'total_size';
my %struct = ("key1" => ["bill","ben"],
"key2" => ["dave","jen"]);
print "total size of %struct - ", total_size(\%struct),"\n";
I've been getting "bit" alot lately with "auto-vivication" of hashes. I would delete and undef a hash, and then it would get "recreated" accidently by some sub, which just tests for existing values. For instance:
#update last viewed timestamp
$info{$key_prev}{'timestamp'} = time;
Well I would delete and undef $info{$key_prev'}; and thought
it was gone, but nope, it got auto-vivified. So I needed:
if(defined $info{$key_prev}){
#update last viewed timestamp
$info{$key_prev}{'timestamp'} = time;
So maybe you should check for sneaky auto-vivications?
I'm not really a human, but I play one on earth.
flash japh
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.