nodedb 0.2.1

Local-first, real-time, edge-to-cloud hybrid database for multi-modal workloads
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// SPDX-License-Identifier: BUSL-1.1

//! Per-tenant CRDT engine state.
//!
//! Manages the loro-backed CRDT state, constraint validation, and dead-letter
//! queue for a single tenant. Lives on the Data Plane (one per tenant per core).

pub mod core;
pub mod history;
pub mod policy;

#[cfg(test)]
mod tests;

pub use core::TenantCrdtEngine;