motedb 0.8.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 column;
pub mod ioctree;
pub mod text;
pub mod timestamp;
pub mod vector;

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