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

pub mod alter;
pub mod create;
pub mod drop;
mod parse;
pub mod show;

pub use alter::alter_retention_policy;
pub use create::create_retention_policy;
pub use drop::drop_retention_policy;
pub use show::show_retention_policy;

/// CRDT collection name for retention policy sync between Origin and Lite.
const RETENTION_POLICIES_CRDT_COLLECTION: &str = "_retention_policies";