Skip to main content

luci/columnar/
mod.rs

1//! Columnar storage for fast field access.
2//!
3//! Stores per-field column data for keyword, numeric, and boolean fields.
4//! Enables fast aggregations and sorting without touching the document store.
5//!
6//! See [[columnar-storage]] and [[feature-aggregations-v010#Step 1]].
7
8pub mod owned;
9pub mod reader;
10pub mod writer;