motedb 0.2.0

AI-native embedded multimodal database for embodied intelligence (robots, AR glasses, industrial arms).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Index Operations Module
//!
//! Modular structure for different index types:
//! - timestamp: Timestamp range queries
//! - column: Column value indexes for WHERE optimization
//! - text: Full-text search with BM25 ranking
//! - vector: Vector similarity search with DiskANN
//! - ioctree: i-Octree 3D point cloud for embodied intelligence

pub mod timestamp;
pub mod column;
pub mod text;
pub mod vector;
pub mod ioctree;

// Re-export for convenience
pub use timestamp::{QueryProfile, MemTableScanProfile};
pub use vector::VectorIndexStats;