wedb_embed 0.1.4

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 algo;
pub mod r#const;
pub mod r#impl;
pub mod key;
pub mod meta;
pub mod opt;

pub use algo::*;
pub use r#const::*;
pub use key::{
  meta as compose_tdigest_meta_key, meta_prefix as compose_tdigest_meta_prefix,
  prefix as compose_tdigest_prefix,
};
pub use meta::{TDigestMeta, decode_double_from_u64, encode_double_to_u64};
pub use opt::{TDigestCreate, TDigestInfo, TDigestMerge};