* Periodically checkpoint the log.

This commit is contained in:
Eelco Dolstra 2004-01-13 13:37:25 +00:00
parent 698e880c9f
commit 3495d153b3
1 changed files with 3 additions and 1 deletions

View File

@ -261,7 +261,9 @@ void Database::close()
delete db;
}
// env->txn_checkpoint(0, 0, 0);
/* Do a checkpoint every 128 kilobytes, or every 5 minutes. */
env->txn_checkpoint(128, 5, 0);
env->close(0);
} catch (DbException e) { rethrow(e); }