2 个版本
0.1.1 | 2023年11月23日 |
---|---|
0.1.0 | 2023年11月23日 |
#35 in #ease
10KB
209 行代码(不含注释)
ValKeyRe
一个优先考虑易用性的键值存储库。
示例
use std::path::PathBuf;
use valkeyre::store::Store;
fn main() {
let store = Store::init(PathBuf::from("./"), "Valkeyre");
let store_a = store.init_room("Table A");
store_a.set("email", "[email protected]");
store_a.set("pass", "hello123");
let store_b = store.init_room("Table B");
store_b.set("email", "[email protected]");
store_b.set("pass", "yo123");
println!(
"{} - {}",
store_a.get("email").unwrap(),
store_a.get("pass").unwrap()
);
println!(
"{} - {}",
store_b.get("email").unwrap(),
store_b.get("pass").unwrap()
);
// [email protected] - hello123
// [email protected] - yo123
}
依赖项
~22KB