8个版本
0.1.7 | 2023年2月18日 |
---|---|
0.1.6 | 2021年9月9日 |
0.1.5 | 2021年1月26日 |
0.1.3 | 2020年6月30日 |
0.1.0 | 2020年5月25日 |
1509 在 数据库接口 中
36 每月下载次数
52KB
1.5K SLoC
simpledb
RocksDB之上的NoSQL嵌入式数据库。
API文档: https://docs.rs/simpledb
快速入门
将以下内容添加到你的 Cargo.toml
[dependencies]
simpledb = "0.1.5"
示例
use simpledb::Database;
fn main() {
// open a database
let db = Database::open("./target/path/to/database").unwrap();
// left push a value to a list
db.list_left_push("key", "value".as_bytes()).unwrap();
}
数据类型和方法
映射
存储键值对,包括以下以 map_
为前缀的方法: get
、put
、delete
、count
、for_each
、items
。
集合
存储唯一值,包括以下以 set_
为前缀的方法: add
、is_member
、delete
、count
、for_each
、items
。
列表
存储有序值,包括以下以 list_
为前缀的方法: left_push
、left_pop
、right_push
、right_pop
、count
、for_each
、items
。
有序列表
存储有序的分数/值对,可能包含多个对,包括以下以 sorted_list_
为前缀的方法: add
、left_pop
、right_pop
、count
、for_each
、items
。
有序集合
存储有序的唯一分数/值对,包括以下以 sorted_set_
为前缀的方法: add
、is_member
、delete
、left
、right
、for_each
、items
。
基准测试
benchmark
目录中的示例代码。
- rustc 1.67.1 (d5a82bbd2 2023-02-07)
- Ubuntu 18.04
- Intel(R) Xeon(R) Platinum 8272CL CPU @ 2.60GHz x 16
方法 | 写入 | op/s |
---|---|---|
map_get | 662,251 | |
map_count | 1,369,863 | |
map_put | Y | 105,152 |
map_delete | Y | 99,900 |
set_count | 1,639,344 | |
set_is_member | 746,268 | |
set_add | Y | 109,409 |
set_delete | Y | 105,152 |
list_count | 1,136,363 | |
list_left_push | Y | 116,414 |
list_left_pop | Y | 96,339 |
list_right_push | Y | 115,207 |
list_right_pop | Y | 98,522 |
已排序的列表计数 | 1,666,666 | |
已排序的列表添加 | Y | 121,951 |
已排序的列表左弹出 | Y | 20,080 |
已排序的列表右弹出 | Y | 9,891 |
已排序的集合是否为成员 | 666,666 | |
已排序的集合计数 | 1,428,571 | |
已排序的集合添加 | Y | 83,333 |
已排序的集合左 | Y | 40,160 |
已排序的集合右 | Y | 13,793 |
已排序的集合删除 | Y | 27,548 |
许可证
MIT License
Copyright (c) 2020-2023 LEI Zongmin <[email protected]>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
依赖关系
~30MB
~589K SLoC