reifydb_store_multi/tier/commit/mod.rs
1// SPDX-License-Identifier: Apache-2.0
2// Copyright (c) 2026 ReifyDB
3
4//! Commit buffer tier of the multi-version store. Holds recent writes in memory before the flusher migrates them to
5//! the persistent tier. Reads consult the commit 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 buffer;
9pub mod memory;
10pub mod result;