Merge pull request #8839
24d56c5
bump lmdb sync threshold for performance (moneromooo-monero)
This commit is contained in:
commit
1df7260bd3
|
@ -576,7 +576,11 @@ namespace cryptonote
|
||||||
else if(options[0] == "fastest")
|
else if(options[0] == "fastest")
|
||||||
{
|
{
|
||||||
db_flags = DBF_FASTEST;
|
db_flags = DBF_FASTEST;
|
||||||
|
#ifdef _WIN32
|
||||||
sync_threshold = 1000; // default to fastest:async:1000
|
sync_threshold = 1000; // default to fastest:async:1000
|
||||||
|
#else
|
||||||
|
sync_threshold = 100000; // default to fastest:async:100000
|
||||||
|
#endif
|
||||||
sync_mode = db_sync_mode_is_default ? db_defaultsync : db_async;
|
sync_mode = db_sync_mode_is_default ? db_defaultsync : db_async;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in New Issue