mirror of
https://github.com/kvazar-network/kevacoin.git
synced 2025-01-22 21:04:22 +00:00
Reduce number of open LevelDB files to 64
This commit is contained in:
parent
af10e3f6ac
commit
2233fc5318
@ -30,6 +30,7 @@ static leveldb::Options GetOptions(size_t nCacheSize) {
|
||||
options.write_buffer_size = nCacheSize / 4; // up to two write buffers may be held in memory simultaneously
|
||||
options.filter_policy = leveldb::NewBloomFilterPolicy(10);
|
||||
options.compression = leveldb::kNoCompression;
|
||||
options.max_open_files = 64;
|
||||
return options;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user