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
/// SSCAN return result type definition: (next_cursor, members).
/// SSCAN 返回结果类型定义:(next_cursor, members)
pub type SetScanResult = (u64, Vec<Vec<u8>>);

/// SSCAN_BY_MEMBER return result type definition: (next_cursor_member, members).
/// 基于成员寻址的 SSCAN 返回结果类型定义:(next_cursor_member, members)
pub type SetScanByMemberResult = (Option<Vec<u8>>, Vec<Vec<u8>>);