mirror of
https://github.com/monero-project/monero.git
synced 2025-01-08 20:09:47 +00:00
Merge pull request #8839
24d56c5
bump lmdb sync threshold for performance (moneromooo-monero)
This commit is contained in:
commit
1df7260bd3
1 changed files with 4 additions and 0 deletions
|
@ -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 a new issue