blazen-memory 0.1.150

Memory and vector store for Blazen with ELID integration
1
2
3
4
5
6
7
8
9
//! Backend implementations for the memory store.

pub mod inmemory;
#[cfg(feature = "jsonl")]
pub mod jsonl;

pub use inmemory::InMemoryBackend;
#[cfg(feature = "jsonl")]
pub use jsonl::JsonlBackend;