reifydb-transaction 0.9.3

Transaction management and concurrency control for ReifyDB
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// SPDX-License-Identifier: Apache-2.0
// Copyright (c) 2026 ReifyDB

pub mod advancer;
pub mod state;
#[allow(clippy::module_inception)]
pub mod watermark;

pub const MAX_WAITERS: usize = 10000;
pub const OLD_VERSION_THRESHOLD: u64 = 1000;
pub const MAX_INLINE_ADVANCE: usize = 64;
pub const ADVANCER_CHUNK: usize = 256;