1 2 3 4 5 6 7 8 9 10 11 12 13
//! Column compression for `VelesDB` (SOTA 2026). //! //! Based on arXiv:2310.11703v2 recommendations: //! - Dictionary encoding for repeated values //! - Delta encoding for sequential numbers //! - Run-length encoding for consecutive duplicates mod dictionary; pub use dictionary::{CompressionStats, DictCodebook, DictionaryEncoder}; #[cfg(test)] mod tests;