in reply to use of eval and Data::Dumper
my $db = tie %hash, "DB_File", "test.db"; use Storable qw(freeze thaw); $db->filter_store_value(sub { $_ = freeze($_) }); $db->filter_fetch_value(sub { $_ = thaw($_) }); $hash{"Larry Wall"} = Person->new(...);
|
|---|