in reply to Re: Hashing Memory Usage
in thread Hashing Memory Usage
Rewriting the code is an option, but not one I'd like to go into unless there is no other hope.
#!/usr/bin/perl -w use strict; my %a = (); my $res = `ps v $$`; print "$res\n"; for my $line ( 1 .. 19000 ){ for ( "AA" .. "DZ" ){ $a{$line}{"$_$line"} = $line; } } $res = `ps v $$`; print "$res\n"; exit 0;
'I think the problem lies in the fact that your data doesn't fit my program'.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Hashing Memory Usage
by derby (Abbot) on Jul 12, 2006 at 16:19 UTC |