motedb 0.8.2

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 btree;
pub mod btree_generic;
pub mod builder;
pub mod cached_index;
pub mod column_value;
pub mod fresh_graph;
pub mod ioctree;
pub mod primary_key;
pub mod text_dictionary;
pub mod text_encoding;
pub mod text_fts;
pub mod text_types;
pub mod tokenizers;
pub mod vamana;

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