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
//! Storage layer implementation
//!
//! Manages physical data storage using LSM-Tree architecture
//! plus Columnar Segment Store for time-series data.

pub mod lsm;
pub mod manifest;
pub mod file_manager;
pub mod checksum;
pub mod columnar;
pub mod row_format;

pub use lsm::{LSMEngine, LSMConfig, MemTable, SSTable};
pub use manifest::{Manifest, FileMetadata, FileType};
pub use file_manager::{FileRefManager, FileHandle};
pub use checksum::{Checksum, ChecksumType, ChecksumError};
pub use columnar::ColumnarStore;