Registry / database / echodb

echodb

JSON →
library0.8.0rscratesunverified

An embedded, in-memory, immutable, copy-on-write database engine designed for high-performance read workloads.

# Cargo.toml [dependencies] echodb = "0.8.0"
INSTALL
IMPORT
SIG · ECHODB
E
echodb
databaserustv0.8.0
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

Database
✓ use echodb::Database;

Creates a database, writes a key-value pair, and commits the transaction.

use echodb::Database; fn main() { let db = Database::new(); let tx = db.begin_write(); tx.set("key", "value").unwrap(); tx.commit().unwrap(); println!("Data committed"); }
Debug
Known issues
gotchaEchoDB is in-memory only; data is lost on process exit unless explicitly persisted.
fix
Implement custom persistence or use a different database for durable storage.
affects: >=0.8.0
Upgrade
Version history
0.8.0latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
17 hits · last 30 days
node
16
Resources
echodb — cargo add echodb · libregistry