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

//! Control-Plane catalog for ND-array metadata.
//!
//! Persists schema digests for every array created via DDL, loaded at
//! server startup from the system catalog's `_system.arrays` table.
//! The Data Plane never touches this directly — dispatch handlers
//! consult the in-memory registry via the shared [`ArrayCatalogHandle`].

pub mod entry;
pub mod persist;
pub mod registry;

pub use entry::ArrayCatalogEntry;
pub use registry::{ArrayCatalog, ArrayCatalogHandle};