Files
paulDB/src/compression/mod.rs
T
2026-06-13 01:36:32 +02:00

12 lines
363 B
Rust
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
//! Spalten-Kompression für den Main-Store (Etappe E3).
//!
//! Zweistufig nach HANA-Vorbild:
//! 1. Dictionary-Encoding (Basis): distinct-Werte + Integer-Value-IDs.
//! 2. Advanced Compression auf die Value-IDs:
//! Prefix · Run-Length (RLE) · Cluster · Sparse · Indirect.
//!
//! Noch leer folgt in E3.
// pub mod dictionary;
// pub mod rle;