lance_context_core/lib.rs
1//! Core types for the lance-context storage layer.
2
3mod context;
4mod record;
5pub mod serde;
6mod store;
7
8pub use context::{Context, ContextEntry, Snapshot};
9pub use record::{ContextRecord, SearchResult, StateMetadata};
10pub use store::{CompactionConfig, CompactionStats, ContextStore, ContextStoreOptions};
11
12// Re-export CompactionMetrics from lance for Python bindings
13pub use lance::dataset::optimize::CompactionMetrics;