yvdb 0.1.4

Educational in-memory vector DB: WAL + bincode snapshots (TOON header), IVF bucket search, Axum REST API, TOON query responses
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![doc = include_str!("../README.md")]

/// HTTP route handlers and request/response types for the REST API.
pub mod api;
/// Shared Axum handler state: store, WAL, config, and server start time.
pub mod app_state;
/// Environment-driven server limits and paths (`YVDB_*` variables).
pub mod config;
/// WAL append log and bincode snapshots for disk durability.
pub mod persist;
/// In-memory vector collections, IVF index, and similarity search.
pub mod store;