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

mod accessors;
mod bitemporal_time;
pub(in crate::data::executor) mod deferred;
mod event_emit;
mod graph_partition;
mod maintenance;
mod open;
pub(in crate::data::executor) mod pressure;
pub(in crate::data::executor) mod priority_queues;
mod response;
mod state;
#[cfg(test)]
pub(crate) mod tests;
mod tick;

pub use state::CoreLoop;