* Use a more reasonable log file size (256 KB instead of 10 MB).
* Checkpoint on exit.
This commit is contained in:
parent
4a013962bd
commit
177a7782ae
1 changed files with 6 additions and 2 deletions
|
@ -94,6 +94,8 @@ Database::Database()
|
||||||
Database::~Database()
|
Database::~Database()
|
||||||
{
|
{
|
||||||
if (env) {
|
if (env) {
|
||||||
|
debug(format("closing database environment"));
|
||||||
|
env->txn_checkpoint(0, 0, 0);
|
||||||
env->close(0);
|
env->close(0);
|
||||||
delete env;
|
delete env;
|
||||||
}
|
}
|
||||||
|
@ -108,12 +110,14 @@ void Database::open(const string & path)
|
||||||
|
|
||||||
env = new DbEnv(0);
|
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(),
|
env->open(path.c_str(),
|
||||||
DB_INIT_LOCK | DB_INIT_LOG | DB_INIT_MPOOL | DB_INIT_TXN |
|
DB_INIT_LOCK | DB_INIT_LOG | DB_INIT_MPOOL | DB_INIT_TXN |
|
||||||
DB_CREATE,
|
DB_CREATE,
|
||||||
0666);
|
0666);
|
||||||
|
|
||||||
} catch (DbException e) { rethrow(e); }
|
} catch (DbException e) { rethrow(e); }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue