nodedb 0.3.0

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

pub mod before;
pub mod classify;
pub mod collector;
pub mod error_blame;
pub mod partition;
pub mod when_filter;

/// Configuration for trigger batch processing.
pub struct BatchConfig {
    /// Maximum rows per trigger batch (default 1024).
    pub batch_size: usize,
}

impl Default for BatchConfig {
    fn default() -> Self {
        Self { batch_size: 1024 }
    }
}