memvid-core 2.0.139

Core library for Memvid v2, a crash-safe, deterministic, single-file AI memory.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Tantivy-backed lexical search integration.

mod engine;
mod query;
mod schema;
mod storage;
mod util;
mod wal;

#[allow(unused_imports)]
pub use engine::{TantivyDocHit, TantivyEngine, TantivySnapshot};
#[allow(unused_imports)]
pub(crate) use storage::{EmbeddedLexSegment, EmbeddedLexStorage};
#[allow(unused_imports)]
pub(crate) use wal::LexWalBatch;