1 个不稳定版本
0.22.3 | 2023年2月5日 |
---|
#1989 在 数据库接口 中
425KB
8K SLoC
redis-rs
redis-rs 是一个针对 Rust 的高级别 Redis 库。它通过一个非常灵活但底层的 API 提供了对所有 Redis 功能的便捷访问。它使用可定制的类型转换特性,以便任何操作都可以返回您期望的类型的结果。这使得开发体验非常愉快。
该包名为 redis
,您可以通过 cargo 依赖它。
[dependencies]
redis = "0.22.3"
该库的文档可以在 docs.rs/redis 找到。
注意:redis-rs 需要 Rust 1.59 或更高版本。
基本操作
要打开连接,您需要创建一个客户端并从其中获取连接。将来将为这些操作提供连接池,但目前每个连接都是独立的,没有池化。
许多命令通过 Commands
特性实现,但也可以手动创建命令。
extern crate redis;
use redis::Commands;
fn fetch_an_integer() -> redis::RedisResult<isize> {
// connect to redis
let client = redis::Client::open("redis://127.0.0.1/")?;
let mut con = client.get_connection()?;
// throw away the result, just make sure it does not fail
let _ : () = con.set("my_key", 42)?;
// read back the key and return it. Because the return value
// from the function is a result for integer this will automatically
// convert into one.
con.get("my_key")
}
异步支持
要启用异步客户端,需要激活底层特性的功能。
# if you use tokio
redis = { version = "0.22.3", features = ["tokio-comp"] }
# if you use async-std
redis = { version = "0.22.3", features = ["async-std-comp"] }
TLS 支持
要启用 TLS 支持,您需要在 Cargo.toml 中使用相关的功能条目。
redis = { version = "0.22.3", features = ["tls"] }
# if you use tokio
redis = { version = "0.22.3", features = ["tokio-native-tls-comp"] }
# if you use async-std
redis = { version = "0.22.3", features = ["async-std-tls-comp"] }
然后您应该能够使用 rediss
URL 方案连接到 Redis 实例
let client = redis::Client::open("rediss://127.0.0.1/")?;
集群支持
可以通过在 Cargo.toml 中指定 "cluster" 作为功能条目来使用集群模式。
redis= {版本= "0.22.3",功能= [ "cluster"] }
然后您可以简单地使用 ClusterClient
,它接受可用节点的列表。
use redis::cluster::ClusterClient;
use redis::Commands;
fn fetch_an_integer() -> String {
// connect to redis
let nodes = vec!["redis://127.0.0.1/"];
let client = ClusterClient::open(nodes).unwrap();
let mut connection = client.get_connection().unwrap();
let _: () = connection.set("test", "test_data").unwrap();
let rv: String = connection.get("test").unwrap();
return rv;
}
JSON 支持
通过在 Cargo.toml 中指定 "json" 作为特性,可以启用 RedisJSON 模块的兼容性。
redis= {版本= "0.22.3",功能= ["json"] }
然后您可以简单地导入 JsonCommands
特性,这将向所有 Redis 连接(与仅添加默认命令的 Commands
区分开来)添加 json
命令。
use redis::Client;
use redis::JsonCommands;
use redis::RedisResult;
use redis::ToRedisArgs;
// Result returns Ok(true) if the value was set
// Result returns Err(e) if there was an error with the server itself OR serde_json was unable to serialize the boolean
fn set_json_bool<P: ToRedisArgs>(key: P, path: P, b: bool) -> RedisResult<bool> {
let client = Client::open("redis://127.0.0.1").unwrap();
let connection = client.get_connection().unwrap();
// runs `JSON.SET {key} {path} {b}`
connection.json_set(key, path, b)?
// you'll need to use serde_json (or some other json lib) to deserialize the results from the bytes
// It will always be a Vec, if no results were found at the path it'll be an empty Vec
}
开发
要测试 redis
,您需要能够与 Redis 模块一起测试,为此,在运行测试脚本之前必须设置以下环境变量:
REDIS_RS_REDIS_JSON_PATH
= RedisJSON 模块的绝对路径(通常称为librejson.so
)。
如果您想在该库上进行开发,makefile 提供了一些命令:
构建
$ make
测试
$ make test
运行基准测试
$ make bench
构建文档(需要夜间编译器,请参阅 rust-lang/rust#43781)
$ make docs
我们鼓励您在合并工作之前运行 clippy
。这些规则可能相当严格。在您的个人工作站上运行此操作可以节省您的时间,因为 Travis CI 将失败任何不符合 clippy
的构建。
$ cargo clippy --all-features --all --tests --examples -- -D clippy::all -D warnings
要使用 afl 运行模糊测试,首先安装 cargo-afl(cargo install -f afl
),然后运行
$ make fuzz
如果模糊器发现崩溃,为了重现它,运行
$ cd afl/<target>/
$ cargo run --bin reproduce -- out/crashes/<crashfile>
依赖项
~2–15MB
~208K SLoC