mirror of
https://github.com/matrix-construct/construct
synced 2024-11-19 00:10:59 +01:00
ircd::db: Promote LZ4 as default compression above Snappy.
This commit is contained in:
parent
f9def72a89
commit
0081985676
1 changed files with 1 additions and 1 deletions
|
@ -85,7 +85,7 @@ struct ircd::db::descriptor
|
|||
/// Compression algorithm for this column. Empty string is equal to
|
||||
/// kNoCompression. List is semicolon separated to allow fallbacks in
|
||||
/// case the first algorithms are not supported.
|
||||
std::string compression {"kSnappyCompression;kLZ4Compression"};
|
||||
std::string compression {"kLZ4Compression;kSnappyCompression"};
|
||||
|
||||
/// User given compaction callback surface.
|
||||
db::compactor compactor {};
|
||||
|
|
Loading…
Reference in a new issue