Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

First, let me say that I was not arguing with the basic premise that in general, Perl does not give memory back to the OS. Only that the definitive statement (in common with most definitive statements), that perl *never* gives memory back to the OS, is not strictly true.

I think that it is fair to say that "mileage varies" even in this simple test....

Hm. If by that you mean that the exact numbers of the recorded memory allocation can vary a little. Yes, of course.

You're running the tests on a system (OS; file-cache; virtual memory; background processes and device drivers et al.) -- that is ever in flux, but that does not detract from the fact that (on AS Perl on windows), if you make single allocations of greater than 1 MB, when those allocations are freed, they will be returned to the OS. They will never be fragmented, because they will never be reallocated for anything else.

This doesn't just apply to large scalars either. For example, if you create an array where the base AV requires more than 1 MB of contiguous memory, when that array is freed, that contiguous chunk for the AV gets returned to the OS.

Here I preallocate the AV for an array to hold upto 1 million values which on my 64-bit perl requires an 8*1e6 = 8000000 byte chunk of contiguous memory:

C:\test>perl -E"say `tasklist|find \"$$\"`; $#a = 1e6; say `tasklist|f +ind \"$$\"`; undef @a; say `tasklist|find \"$$\"`" perl.exe 247600 Console 1 4 +,676 K perl.exe 247600 Console 1 12 +,552 K perl.exe 247600 Console 1 4 +,720 K

And when the array is freed, that ~8MB is given back.

And if I populate that array:

C:\test>perl -E"say `tasklist|find \"$$\"`; $#a = 1e6; $a[$_]=$_ for 0 +..1e6-1; say `tasklist|find \"$$\"`; undef @a; say `tasklist|find \"$ +$\"`" perl.exe 293992 Console 1 4 +,688 K perl.exe 293992 Console 1 36 +,872 K perl.exe 293992 Console 1 29 +,044 K

Although the additional 24MB of ram (1e6 * 24B) required to hold the array's scalars is not returned to the OS, the 8MB allocated to the AV, *still is*.

The difference is that the 1e6 x 24 byte NVs are allocated from the process memory pool on the fly, and that pool is expanded -- in smallish chunks -- on the fly to accommodate them. Thus those piecemeal allocations are not contiguous chunks greater than 1MB, so do not get returned to the OS.

This knowledge is arcane and system dependent, but with care (and the need) it can be exploited to good effect if you use a system where it is so.

Just beware of overly simplistic, 'definitive truths'.


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^6: Timing of garbage collection by BrowserUk
in thread Timing of garbage collection by dd-b

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



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others admiring the Monastery: (8)
As of 2024-04-18 08:28 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found