wedb_embed 0.1.12

Embedded database engine providing Redis-like APIs, built on fjall / 嵌入式数据库引擎,提供类似 Redis 的接口,底层基于 fjall 开发
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub mod algebra;
pub mod r#const;
pub mod r#impl;
pub mod key;
pub mod meta;
pub mod opt;
pub mod pop;
pub mod scan;

pub use r#const::ERR_WRONG_TYPE;
pub(crate) use r#impl::commit_set_batch;
pub use r#impl::prepare_set_meta_for_write;
pub use key::{
  ItemKeyComposer as SetItemKeyComposer, member as compose_set_key, meta as compose_set_meta_key,
  prefix as compose_set_prefix, prefix_stack as compose_set_prefix_stack,
};
pub use meta::SetMeta;
pub use opt::{SetScanByMemberResult, SetScanResult};