2 个版本
0.0.2 | 2021年5月26日 |
---|---|
0.0.1 | 2021年5月25日 |
#223 in #key-value-store
5KB
82 行代码(不包括注释)
简单存储
简单、快速且易于使用的键值存储。
免责声明
本项目不适用于生产环境。
用法
use simple_storage::{Storage, Value};
fn main() {
let mut storage = Storage::new("db.json");
storage.pull();
// add key
storage
.put("username", Value::String("rawnly"));
// retrive key
let username = storage
.get("username")
.to_string()
.unwrap();
}
依赖项
~0.7–1.4MB
~32K SLoC