ripvec_core/cache/mod.rs
1//! Persistent index cache with content-addressed object store.
2//!
3//! Stores per-file chunks and embeddings in a git-style object store,
4//! tracks file state in a Merkle-tree manifest, and supports incremental
5//! reindexing by diffing against the filesystem.
6
7pub mod config;
8pub mod diff;
9pub mod file_cache;
10pub mod manifest;
11pub mod reindex;
12pub mod store;