reifydb-core 0.9.0

Core database interfaces and data structures for ReifyDB
Documentation
1
2
3
4
5
6
7
8
9
10
11
// SPDX-License-Identifier: Apache-2.0
// Copyright (c) 2026 ReifyDB

//! Operator state: the [`store`] contract every operator reads and writes through, the [`cache`] facade that
//! forwards to it, and the group/horizon/keyspace vocabulary reclamation works in. Not window-specific: extern_c,
//! extern_rust, distinct and take all route their state through the same contract.

pub mod cache;
pub mod group;
pub mod horizon;
pub mod store;