Seems to me this long thread could be summed up to a simple advice ... if you're running out of memory, check whether you really need to keep all the information in memory at all times or whether you could rather extract just a small subset of the data of each "object" and keep just that.

Let me give you an example. Suppose you are looking for duplicate files in a directory structure? Will you keep all the contents of all those files in memory? Of course not! You'll compute a hash and store just the hash (and maybe the file size) in memory and compare that. Is that rocket science? Do you need to talk about the O() notation? In your case it's actually even simpler, you do not compute some value out of the whole objects, you just extract a few of the attributes.

Jenda
Enoch was right!
Enjoy the last years of Rome.


In reply to Re: Gay Dating; or, Thrifty Set Intersections with an Accumulator by Jenda
in thread Gay Dating; or, Thrifty Set Intersections with an Accumulator by Xiong

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.