Hi All,

I need your wisdom.

In my script I read some data to the hash (hash of arrays). It is quite big and takes around 1 GB of memory. Then I start reading another file line by line and if some data match to the hash key it is printed out.

!!!! As soon as I start printing things memory consumption grows like crazy resulting in "out of memory" error. Total amount of memory on the working machine is 4Gb.

How to reduce memory usage?

*** Solved! See my comment underneath. ***

My script looks like that:

##################### my %hash = get_hash(); open(IN, "$in"); open(OUT1, "> $out1"); open(OUT2, "> $out2"); open(OUT3 ,"> $out3"); while (<IN>) { my @data = split /\s+/, $_; if (defined($hash{$data[0]})) { print OUT1 "$data[0]\n"; print OUT2 join("\t", @data[1..$#data]) ."\n"; print OUT3 join("\t", @{$hash{$data[0]}}) ."\n"; } }

Thank you in advance!

Best,

Mike


In reply to Memory consumption by pachkov

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.