From 008198567615f64c5ea9f6fd477841607176d400 Mon Sep 17 00:00:00 2001 From: Jason Volk Date: Fri, 30 Nov 2018 15:20:35 -0800 Subject: [PATCH] ircd::db: Promote LZ4 as default compression above Snappy. --- include/ircd/db/descriptor.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/ircd/db/descriptor.h b/include/ircd/db/descriptor.h index 13de155dc..1c10a963f 100644 --- a/include/ircd/db/descriptor.h +++ b/include/ircd/db/descriptor.h @@ -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 {};