mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-25 12:38:48 +03:00
Try to lower map size
Maybe this fixes the 1mb map size in my windows test environment?
This commit is contained in:
parent
fe912240bc
commit
0d6a65af07
1 changed files with 1 additions and 1 deletions
|
@ -44,7 +44,7 @@ static lmdb::val CACHE_FORMAT_VERSION_KEY("cache_format_version");
|
|||
|
||||
constexpr size_t MAX_RESTORED_MESSAGES = 30;
|
||||
|
||||
constexpr auto DB_SIZE = 512UL * 1024UL * 1024UL * 1024UL; // 512 GB
|
||||
constexpr auto DB_SIZE = 32UL * 1024UL * 1024UL * 1024UL; // 512 GB
|
||||
constexpr auto MAX_DBS = 8092UL;
|
||||
|
||||
//! Cache databases and their format.
|
||||
|
|
Loading…
Reference in a new issue