wedb_embed 0.1.13

Embedded database engine providing Redis-like APIs, built on fjall / 嵌入式数据库引擎,提供类似 Redis 的接口,底层基于 fjall 开发
Documentation
1
2
3
4
5
6
7
8
9
//! Storage engine abstractions and concrete engine implementations.
//! 存储引擎抽象与具体底层实现。

#[cfg(feature = "fjall")]
pub mod fjall;

#[cfg(feature = "fjall")]
pub use fjall::Fjall;
pub use wedb_embed_engine::{Batch, Engine, KvEntry, Partition};