git-svn-id: http://svn.ali.as/cpan/trunk/DBM-Deep@3643
88f4d9cd-8a04-0410-9d60-8f63309c3137
sub exists { (shift)->EXISTS( @_ ) }
sub clear { (shift)->CLEAR( @_ ) }
+sub flush {shift->_get_self->_engine->flush;}
sub _dump_file {shift->_get_self->_engine->_dump_file;}
1;
$self->storage->print_at( $offset, $self->sector_cache->{$offset} );
}
+ # Why do we need to have the storage flush? Shouldn't autoflush take care of things?
+ # -RobK, 2008-06-26
+ $self->storage->flush;
+
$self->clear_dirty_sectors;
$self->clear_sector_cache;