nodedb 0.0.0-beta.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
16
17
pub mod bridge;
pub mod config;
pub mod control;
pub mod data;
pub mod engine;
pub mod error;
pub mod memory;
pub mod query;
pub mod storage;
pub mod types;
pub mod version;
pub mod wal;

pub use config::{EngineConfig, ServerConfig};
pub use error::{Error, Result};
pub use nodedb_types::error::{ErrorCode, NodeDbError, NodeDbResult};
pub use types::{DocumentId, Lsn, ReadConsistency, RequestId, TenantId, VShardId};