mnperez has asked for the wisdom of the Perl Monks concerning the following question:
#!/usr/bin/perl # To burn up memory quickly, run this with option "death". $option = shift; if ($option eq "death") { $line = "1::"; } else { $line = "1:"; } while (1) { @X = split(/:/, $line); }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Perl memory leak?
by perlplexer (Hermit) on Apr 17, 2002 at 18:32 UTC | |
by perlplexer (Hermit) on Apr 17, 2002 at 18:36 UTC | |
by particle (Vicar) on Apr 17, 2002 at 19:02 UTC | |
by jsprat (Curate) on Apr 18, 2002 at 01:32 UTC | |
|
Re: Perl memory leak?
by Chmrr (Vicar) on Apr 18, 2002 at 01:42 UTC | |
|
Re: Perl memory leak?
by Rex(Wrecks) (Curate) on Apr 17, 2002 at 18:54 UTC | |
|
You don't even need @X
by RMGir (Prior) on Apr 17, 2002 at 20:17 UTC | |
|
Re: Perl memory leak?
by mattr (Curate) on Apr 18, 2002 at 13:43 UTC |