1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
//! AuraDB - High-performance Rust storage engine
//!
//! This crate provides a storage engine with the following key innovations:
//! - WAL-time Key-Value separation (BVLSM-inspired)
//! - Adaptive (RL-driven) compaction (RusKey-inspired)
//! - Learned indexes (DobLIX-inspired)
//!
//! # Quick Start
//!
//! ```rust
//! use auradb::{Engine, EngineBuilder};
//!
//! #[tokio::main]
//! async fn main() -> Result<(), Box<dyn std::error::Error>> {
//! let engine = EngineBuilder::new()
//! .path("./auradb_data")
//! .build()?;
//!
//! engine.put_str("key", "value")?;
//! let value = engine.get_str("key")?;
//! println!("Value: {:?}", value);
//!
//! engine.close().await?;
//! Ok(())
//! }
//! ```
// Re-export main types
pub use ;
pub use ;
pub use ;
/// Common imports for the crate