12个版本

使用旧的Rust 2015

0.3.1 2016年11月15日
0.3.0 2016年6月17日
0.2.4 2015年11月7日
0.2.3 2015年7月27日
0.0.1 2015年6月3日

#2042数据库接口


用于 mcpat

Apache-2.0/MIT

9KB
201

Hiredis 版本 状态

此包为Hiredis提供接口。

文档

示例

use hiredis::Reply;

let mut context = hiredis::connect("127.0.0.1", 6379).unwrap();

match context.command(&["SET", "greeting", "Hi, there!"]).unwrap() {
    Reply::Status(_) => {},
    _ => assert!(false),
}

match context.command(&["GET", "greeting"]).unwrap() {
    Reply::Bulk(bytes) => println!("{}", String::from_utf8(bytes).unwrap()),
    _ => assert!(false),
};

贡献

非常欢迎您的贡献。请不要犹豫,提出问题或提交pull request。请注意,任何提交给项目的贡献都将根据LICENSE.md中给出的条款进行许可。

依赖

~220KB