uqa-storage 0.1.11

Document store, inverted index, IVF/HNSW vectors, B-tree, R*Tree, catalog
Documentation
//
// Unified Query Algebra
//
// Copyright (c) 2023-2026 Cognica, Inc.
//

//! Physical vector-index configuration shared by engines and backends.

mod hnsw;
mod ivf;
mod parsing;
mod types;

pub use hnsw::HNSWIndexParams;
pub use ivf::IVFIndexParams;
pub use types::{VectorIndexOpenMode, VectorIndexSpec};

#[cfg(test)]
mod tests;