in reply to Re^3: modularization, memory usage and performance
in thread modularization, memory usage and performance
sub loadData { my $file = shift; my %localhash = (); tie %localhash , 'Tie::Persistent', $file , 'rw'; untie %localhash; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: modularization, memory usage and performance (circles)
by tye (Sage) on Feb 09, 2005 at 03:35 UTC | |
by jmagiera (Novice) on Feb 09, 2005 at 08:03 UTC |