I don't think you are seeing a _leak_ -- You seem to just be seeing perl try to be smart about memory usage. perl thinks "hey, this var needed 12 mb of space last time it was used, I will save this much memory for future usage instead of freeing it back to the system so I do not have to realocate it for this again". I bet that if you look at the size of memory the script is taking as it starts for the baseline and then run it against a 15 mb file you will see that it uses xmb more memory and holds onto it. Behind the scenes though you may notice that the memory is actually unused and swapped out (at least on unix it does this) and that only what is currently used is res.

-Waswas

In reply to Re: Where's the leak? by waswas-fng
in thread Where's the leak? by tekkie

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.