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
// SPDX-License-Identifier: Apache-2.0
// Copyright (c) 2025 ReifyDB

//! Background flusher that migrates writes from the buffer tier to the persistent tier. The actor decides when to
//! flush (size, age, explicit request) and the listener exposes flush events to anything that wants to track
//! progress, like the admin UI or test harnesses waiting for durability.

pub mod actor;
pub mod listener;