meonkeys has asked for the wisdom of the Perl Monks concerning the following question:
use strict; my %testline; # use DB_File; # tie (%testline, 'DB_File', 'testline.db', O_RDWR|O_CREAT, # 0666, $DB_BTREE) or die "Cannot tie:$!"; push @{ $testline{a} }, { uri => 'http://', name => 'barney', state => 'MI' }; push @{ $testline{a} }, { uri => 'ftp://', name => 'jade', state => 'NM' }; # use Storable; # store \%testline, 'filetest'; # my $hashref = retrieve('filetest'); # use Data::Dumper; # print Data::Dumper->Dump([$hashref],['hashref']);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re (tilly) 1: Limits of DB_File with Btree algorithm
by tilly (Archbishop) on Feb 05, 2001 at 22:14 UTC | |
|
Re: Limits of DB_File with Btree algorithm
by runrig (Abbot) on Feb 05, 2001 at 22:12 UTC |