Skip to main content

reifydb_store_multi/tier/commit/
mod.rs

1// SPDX-License-Identifier: AGPL-3.0-or-later
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;