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;
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.