// SPDX-License-Identifier: Apache-2.0
// Copyright (c) 2025 ReifyDB
pub const MAX_WAITERS: usize = 10000;
pub const MAX_PENDING: usize = 100000;
pub const OLD_VERSION_THRESHOLD: u64 = 1000;
pub const PENDING_CLEANUP_THRESHOLD: u64 = 1000;
pub const WATERMARK_CHANNEL_SIZE: usize = 1000;