NOLOCK set for lmdb database

This commit is contained in:
moneroexamples 2016-07-26 13:15:56 +00:00
parent 416a0634db
commit fcfbfc1026
1 changed files with 3 additions and 3 deletions

View File

@ -39,12 +39,12 @@ namespace xmreg
blockchain_path = _blockchain_path;
//db_flags |= MDB_RDONLY;
//db_flags |= MDB_NOLOCK;
db_flags |= MDB_NOLOCK;
//db_flags |= MDB_SYNC;
uint64_t DEFAULT_FLAGS = MDB_NOMETASYNC | MDB_NORDAHEAD;
// uint64_t DEFAULT_FLAGS = MDB_NOMETASYNC | MDB_NORDAHEAD;
db_flags = DEFAULT_FLAGS;
//db_flags = DEFAULT_FLAGS;
BlockchainDB* db = nullptr;
db = new BlockchainLMDB();