nodedb 0.2.0

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
16
// SPDX-License-Identifier: BUSL-1.1

pub mod cascade;
pub mod purge;
pub mod query;
pub mod scan;
pub mod snapshot;
pub mod store;
pub mod temporal;

pub use store::{Direction, Edge, EdgeRecord, EdgeStore};
pub use temporal::{
    EdgeRef, EdgeValuePayload, GDPR_ERASURE_SENTINEL, SYSTEM_TIME_WIDTH, TOMBSTONE_SENTINEL,
    edge_version_prefix, is_gdpr_erasure, is_sentinel, is_tombstone, parse_versioned_edge_key,
    versioned_edge_key,
};