* Use a more reasonable log file size (256 KB instead of 10 MB).

* Checkpoint on exit.
This commit is contained in:
Eelco Dolstra 2003-07-31 14:28:49 +00:00
parent 4a013962bd
commit 177a7782ae
1 changed files with 6 additions and 2 deletions

View File

@ -94,6 +94,8 @@ Database::Database()
Database::~Database()
{
if (env) {
debug(format("closing database environment"));
env->txn_checkpoint(0, 0, 0);
env->close(0);
delete env;
}
@ -108,12 +110,14 @@ void Database::open(const string & path)
env = new DbEnv(0);
debug("foo" + path);
env->set_lg_bsize(32 * 1024); /* default */
env->set_lg_max(256 * 1024); /* must be > 4 * lg_bsize */
env->open(path.c_str(),
DB_INIT_LOCK | DB_INIT_LOG | DB_INIT_MPOOL | DB_INIT_TXN |
DB_CREATE,
0666);
} catch (DbException e) { rethrow(e); }
}