nodedb 0.4.0

Local-first, real-time, edge-to-cloud hybrid database for multi-modal workloads
Documentation
// SPDX-License-Identifier: BUSL-1.1

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

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