nodedb 0.3.0-beta.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

//! Retention / temporal-purge / last-value Meta dispatch.
//!
//! Split off from `dispatch/other.rs` to respect the per-file size budget.
//! Handlers are grouped by concern:
//!
//! - `handlers` — retention + continuous-agg + last-value + edge-store /
//!   document-strict / timeseries-columnar temporal-purge handlers and the
//!   dispatch entry point [`CoreLoop::dispatch_meta_retention`].
//! - `columnar_plain` — plain columnar temporal-purge (segment-scanning,
//!   delete-bitmap marking).

pub mod columnar_plain;
pub mod handlers;