0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2025-03-13 21:10:32 +01:00

ircd::db: Increase the default target file size and multiplier; regression a68b96f5e3

This commit is contained in:
Jason Volk 2020-03-18 17:13:33 -07:00
parent 7d9e992e0d
commit 13bffdcf55

View file

@ -96,8 +96,8 @@ struct ircd::db::descriptor
/// Compaction related parameters. see: rocksdb/advanced_options.h
struct
{
size_t base {64_MiB}; // rocksdb default
size_t multiplier {1}; // rocksdb default
size_t base {128_MiB};
size_t multiplier {2};
}
target_file_size;