Skip to main content

mentedb_index/
lib.rs

1//! MenteDB Index — high-performance index structures for memory retrieval.
2//!
3//! This crate provides:
4//! - HNSW vector index for approximate nearest neighbor search
5//! - Roaring bitmap indexes for tag and attribute filtering
6//! - Temporal index for timestamp range queries
7//! - Salience index for top-k retrieval by importance
8//! - Composite index manager for hybrid search
9
10pub mod bitmap;
11pub mod hnsw;
12pub mod manager;
13pub mod salience;
14pub mod temporal;
15
16pub use bitmap::BitmapIndex;
17pub use hnsw::{DistanceMetric, HnswIndex};
18pub use manager::IndexManager;
19pub use salience::SalienceIndex;
20pub use temporal::TemporalIndex;