Skip to main content

reifydb_store_multi/buffer/
mod.rs

1// SPDX-License-Identifier: Apache-2.0
2// Copyright (c) 2025 ReifyDB
3
4//! Hot tier of the multi-version store. Holds recent writes in memory before the flusher migrates them to the
5//! persistent tier. Reads consult the buffer first and fall through to persistent storage on a miss, so
6//! freshly-written rows are visible immediately without waiting for the flush.
7
8pub mod memory;
9pub mod result;
10pub mod tier;