Skip to main content

Crate emdb

Crate emdb 

Source
Expand description

§emdb

A lightweight, high-performance embedded database for Rust.

This crate is in early development. The API is unstable and will change before the 1.0 release. See the repository for roadmap and status: https://github.com/jamesgober/emdb-rs

§Example

use emdb::Emdb;

let db = Emdb::open_in_memory();
assert_eq!(db.len(), 0);

Structs§

Emdb
The primary embedded database handle.

Enums§

Error
The top-level error type returned by every fallible operation in emdb.

Type Aliases§

Result
Convenient Result alias where the error type is fixed to Error.