reifydb-store-multi 0.5.0

Multi-version storage for OLTP operations with MVCC support
Documentation
1
2
3
4
5
6
7
8
9
10
// SPDX-License-Identifier: Apache-2.0
// Copyright (c) 2025 ReifyDB

//! Hot tier of the multi-version store. Holds recent writes in memory before the flusher migrates them to the
//! persistent tier. Reads consult the buffer first and fall through to persistent storage on a miss, so
//! freshly-written rows are visible immediately without waiting for the flush.

pub mod memory;
pub mod result;
pub mod tier;