Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
How can i delete perl stuff from memory. I've understood that commands like delete, shift and undef do these. But it doesn't seem to be so. Test code below (uses ~170M memory). I watched memory usage with gtop. What happens to memory after is has been removed from perl (shift/undef/delete etc)? Can it be reused by other apps? Perl itself might be able to reuse, but i haven't tested enough to make more certain points.

#!/usr/bin/perl # # Testing memory usage... use warnings; use strict; my (%hash,@array); my ($i,$j)=(0,0); $|=1; while ($i<2000) { while ($j<1000) { push (@{$array[$i]},$j); push (@{$hash{$i+1}},$j); $j++; } $i++; $j=0; print "\r$i"; } print "\nLoaded. Sleeping little.\n"; sleep 15; print "Copying for undef.\n"; my %new_hash=%hash; print "Deleting hash.\n"; $i=0; foreach (sort {$a<=>$b} keys %hash) { delete $hash{$_}; $i++; print "\r$i"; } print "\nDone, sleeping\n"; sleep 10; print "Shifting array.\n"; $i=0; foreach (@array) { shift @array; $i++; print "\r$i"; } print "\nDone. Sleeping.\n"; sleep 10; print "Undefing new_hash.\n"; undef %new_hash; print "Sleeping.\n"; sleep 10; print "Exit.\n"; exit 0;

In reply to Memory usage and perl by Anonymous Monk

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 wandering the Monastery: (None)
    As of 2024-04-25 01:41 GMT
    Sections?
    Information?
    Find Nodes?
    Leftovers?
      Voting Booth?

      No recent polls found