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 analyze;
pub mod auto_analyze;
pub mod compact;
pub mod distributed;
pub mod reindex;
pub mod stats_collector;
pub mod storage_info;
pub mod vector_index;

pub use analyze::handle_analyze;
pub use compact::handle_compact;
pub use reindex::handle_reindex;
pub use storage_info::{handle_show_compaction_status, handle_show_storage};
pub use vector_index::{
    handle_alter_vector_index_compact, handle_alter_vector_index_seal,
    handle_alter_vector_index_set, handle_show_vector_index,
};