nodedb 0.4.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
// SPDX-License-Identifier: BUSL-1.1

pub mod checkpoint;
pub mod key;
pub mod manager;
pub mod tree;
pub mod window;
mod windowed_query;

pub use checkpoint::SortedIndexSnapshot;
pub use key::{SortDirection, SortKeyEncoder};
pub use manager::SortedIndexManager;
pub use tree::OrderStatTree;
pub use window::{WindowConfig, WindowType};