My code looks like:
my %var;
my %var_new={};
while(1){
while(my ($k,$v)=each %var){
&a_sub($v);
}
%var={}; # A
map { $var{$_}=$var_new{$_}; } keys %var_new;
%var_new={}; # B
}
sub a_sub { #....} # will fill %var_new
My program's memory usage goes up and up.
It seems Perl dont free memory in A and B.
How can I manually make Perl to free?
use strict; use warnings; use diagnostics(the latter only during development) – Quentin Jan 19 '12 at 10:17