Add MDB_NORDAHEAD as a supported LMDB flag for blockchain_import

This commit is contained in:
warptangent 2015-05-08 11:43:50 -07:00
parent a52496de77
commit 54bd9c1ed5
No known key found for this signature in database
GPG key ID: 0E490BEBFBE4E92D

View file

@ -94,21 +94,15 @@ int parse_db_arguments(const std::string& db_arg_str, std::string& db_engine, in
continue; continue;
LOG_PRINT_L1("LMDB flag: " << it); LOG_PRINT_L1("LMDB flag: " << it);
if (it == "nosync") if (it == "nosync")
{
mdb_flags |= MDB_NOSYNC; mdb_flags |= MDB_NOSYNC;
}
else if (it == "nometasync") else if (it == "nometasync")
{
mdb_flags |= MDB_NOMETASYNC; mdb_flags |= MDB_NOMETASYNC;
}
else if (it == "writemap") else if (it == "writemap")
{
mdb_flags |= MDB_WRITEMAP; mdb_flags |= MDB_WRITEMAP;
}
else if (it == "mapasync") else if (it == "mapasync")
{
mdb_flags |= MDB_MAPASYNC; mdb_flags |= MDB_MAPASYNC;
} else if (it == "nordahead")
mdb_flags |= MDB_NORDAHEAD;
else else
{ {
std::cerr << "unrecognized database flag: " << it << ENDL; std::cerr << "unrecognized database flag: " << it << ENDL;