motedb 0.2.0

AI-native embedded multimodal database for embodied intelligence (robots, AR glasses, industrial arms).
Documentation
//! Index layer implementation
//!
//! Provides indexes for multi-modal data types

pub mod builder;
pub mod text_types;
pub mod text_fts;
pub mod text_encoding;
pub mod text_dictionary;
pub mod tokenizers;
pub mod vamana;
pub mod fresh_graph;
pub mod btree;
pub mod btree_generic;
pub mod primary_key;
pub mod column_value;
pub mod cached_index;
pub mod ioctree;

pub use builder::IndexBuilder;
pub use text_fts::{TextFTSIndex, TextFTSStats};
pub use text_types::{Tokenizer, WhitespaceTokenizer, NgramTokenizer, Token};
pub use text_dictionary::ChunkedDictionary;
pub use btree::{BTree, BTreeConfig, BTreeStats};
pub use btree_generic::{GenericBTree, GenericBTreeConfig};
pub use primary_key::PrimaryKeyIndex;
pub use vamana::DiskANNIndex;