nodedb 0.4.0

Local-first, real-time, edge-to-cloud hybrid database for multi-modal workloads
Documentation
// SPDX-License-Identifier: BUSL-1.1

//! KV engine operation handlers for the Data Plane executor.

pub(in crate::data::executor) mod atomic;
pub(in crate::data::executor) mod batch;
pub(in crate::data::executor) mod crud;
mod dispatch;
mod field;
mod index;
mod materialize_scan;
mod scan;
pub(in crate::data::executor) mod sorted;
pub(in crate::data::executor) mod sorted_index_compute;
pub(in crate::data::executor) mod transfer;
mod ttl;

pub(in crate::data::executor) mod field_compute;
pub(in crate::data::executor) mod transfer_compute;