Skip to main content

liquid_cache/liquid_array/raw/
mod.rs

1//! Low level array primitives.
2//! You should not use this module directly.
3//! Instead, use `liquid_cache_datafusion_server` or `liquid_cache_datafusion_client` to interact with LiquidCache.
4pub(super) mod bit_pack_array;
5/// FSST dictionary backing used by byte-view arrays.
6pub mod fsst_buffer;
7pub use bit_pack_array::BitPackedArray;
8pub use fsst_buffer::FsstArray;