aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPieter Wuille <pieter.wuille@gmail.com>2013-03-30 21:19:09 -0700
committerPieter Wuille <pieter.wuille@gmail.com>2013-03-30 21:19:09 -0700
commit767fe14a27b5b3c6d2d92f790468d2147510d02d (patch)
treebafbc71efd4b20a55a43d0c046f72e98d87b28b0 /src
parente3c063b31598e1ffa83a978fd2f4e0551ead7261 (diff)
parent2e3c76bf9857f5ac2814df9fd6b9b5b7a7eff88a (diff)
downloadbitcoin-767fe14a27b5b3c6d2d92f790468d2147510d02d.tar.xz
Merge pull request #2422 from sipa/nowalcache
Don't use -dbcache for BDB anymore
Diffstat (limited to 'src')
-rw-r--r--src/db.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/db.cpp b/src/db.cpp
index 94629f3cad..e51d5d2cba 100644
--- a/src/db.cpp
+++ b/src/db.cpp
@@ -75,11 +75,10 @@ bool CDBEnv::Open(const boost::filesystem::path& path)
if (GetBoolArg("-privdb", true))
nEnvFlags |= DB_PRIVATE;
- unsigned int nDbCache = GetArg("-dbcache", 25);
dbenv.set_lg_dir(pathLogDir.string().c_str());
- dbenv.set_cachesize(nDbCache / 1024, (nDbCache % 1024)*1048576, 1);
- dbenv.set_lg_bsize(1048576);
- dbenv.set_lg_max(10485760);
+ dbenv.set_cachesize(0, 0x100000, 1); // 1 MiB should be enough for just the wallet
+ dbenv.set_lg_bsize(0x10000);
+ dbenv.set_lg_max(1048576);
dbenv.set_lk_max_locks(40000);
dbenv.set_lk_max_objects(40000);
dbenv.set_errfile(fopen(pathErrorFile.string().c_str(), "a")); /// debug