Never CBO-encode

This commit is contained in:
Kerollmops
2025-06-17 12:31:05 +02:00
parent 67b08a180f
commit 47f6ab1279

View File

@@ -12,7 +12,7 @@ use crate::update::del_add::{DelAdd, KvReaderDelAdd};
/// This is the limit where using a byteorder became less size efficient
/// than using a direct roaring encoding, it is also the point where we are able
/// to determine the encoding used only by using the array of bytes length.
pub const THRESHOLD: usize = 3;
pub const THRESHOLD: usize = 0;
/// A conditionnal codec that either use the RoaringBitmap
/// or a lighter ByteOrder en/decoding method.