Perl_Love has asked for the wisdom of the Perl Monks concerning the following question:
#!/usr/bin/perl -w use warnings; use BerkeleyDB; $|=1; my $env=new BerkeleyDB::Env -Home=>'/home/y6cme/perl5', -Flags=>DB_CREATE|DB_INIT_MPOOL || die; my %hash; my $db=tie(%hash,"BerkeleyDB::Btree", -Filename=>"test.db", -Flags=>DB_CREATE, -Env=>$env) || die; for(1..10000){ $hash{$_}=$_; } untie $db; undef %hash; my $db2=tie(%hash2,"BerkeleyDB::Btree", -Filename=>"test.db", -Flags=>DB_CREATE, -Env=>$env) || die; for(1..10000){ $db2->db_del($_); } untie $db2; undef %hash2;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: db_del of BerkeleyDB
by Corion (Patriarch) on Jun 10, 2016 at 06:35 UTC | |
|
Re: db_del of BerkeleyDB
by Anonymous Monk on Jun 10, 2016 at 03:27 UTC |