in reply to Improving memory performance
What not to do:
{ my ($x,$y); $x = \$y; # These will last until exit $y = \$x; } { my $x; $x = \$x; # This will last also }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Improving memory performance
by Sihal (Pilgrim) on Oct 07, 2002 at 11:48 UTC |