in reply to Memory Optimization
To reload hash from disk:use strict; use Storable qw(nstore); my %hash = my_build_hash_sub(); nstore (\%hash, "hash.nstore.dat");
use strict; use Storable; my %hash = %{ retrieve("hash.nstore.dat") };
--Jim
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Memory Optimization
by Juerd (Abbot) on Dec 30, 2001 at 06:02 UTC | |
by jlongino (Parson) on Dec 30, 2001 at 06:11 UTC |