If you are looking at saving data to disk in a hash structure, my recommendation is to use DBM::Deep.
It's pure Perl, fast and very stable.
use strict; use warnings; use DBM::Deep; my $dbm = DBM::Deep->new('mj-test-schedules'); $dbm->{'some_key_name'} = 'some value'; for (keys %$dbm) ) { print "$_ => $dbm->{$_}\n"; }
In reply to Re: Storable and MLDb
by tokpela
in thread Storable and MLDb
by saintex
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |