Keys are simply short strings of integers.

Hm. Does that mean each key is a single short integer, or each key contains several integers?

Here's why I ask. The following build two hashes with 1 million key/value pairs.

  1. In this one the keys are strings containing 3 x 7 digit integers; and the values are 10 x 7 digits integers delimited by spaces:
    C:\test>p1 Perl> #5.6MB ;; Perl> $h{ "$_ " x 3} = "$_ " x 10 for 1e6 .. 2e6;; Perl> # 299MB ;;

    1 million key/value pairs 300MB

  2. Same thing, but packing the integers to 4-byte binary values:
    C:\test>p1 Perl> # 5.6MB ;; Perl> $h{ pack 'V3', ($_) x 3} = pack 'V10', ($_) x 10 for 1e6 .. 2e6; +; Perl> # 237MB ;;

    Voila! You've stored the same information and saved 1/5th of the space.

If the numbers can be stored as shorts or bytes, you can save even more.

I'm also having trouble reconciling your OP mention of a 3GB hash with the description of key/value sizes and total numbers above?

This creates a 3 million key/value pair hash with 21-byte keys and 80-byte values and the total memory requirement is <1GB:

Perl> $h{ "$_ " x 3} = "$_ " x 10 for 1e6 .. 4e6;; Perl> # 912MB ;;

With the rise and rise of 'Social' network sites: 'Computers are making people easier to use everyday'
Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
"Science is about questioning the status quo. Questioning authority".
In the absence of evidence, opinion is indistinguishable from prejudice.

In reply to Re^3: Small Hash a Gateway to Large Hash? by BrowserUk
in thread Small Hash a Gateway to Large Hash? by lsherwood

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.