wedb_embed 0.1.2

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
pub mod conf;
pub mod r#impl;
pub mod key;
pub mod meta;
pub mod traits;

pub use conf::{ERR_INDEX_OUT_OF_RANGE, ERR_NO_SUCH_KEY, ERR_RANK_ZERO, ERR_WRONG_TYPE, PosSpec};
pub use r#impl::*;
pub use key::{
  ItemKeyComposer as ListItemKeyComposer, ItemKeyComposer, item as compose_list_item,
  meta as compose_list_meta_key, prefix as compose_list_prefix,
  prefix_stack as compose_list_prefix_stack,
};
pub use meta::ListMeta;
pub use traits::List;