qualia_core_db/inference/runtime/kv/prefix/mod.rs
1//! Reference-counted bridge between graph prefix identities and paged KV storage.
2//!
3//! Registry entries own one reference to every physical page. Request block tables retain an
4//! additional reference while attached, so eviction never invalidates an active request.
5
6mod store;
7
8pub use store::{PrefixKvError, PrefixKvStore};
9
10#[cfg(test)]
11mod tests;