An async Redis client for Rust built on Tokio and Futures.
```rust use fred::prelude::*;
async fn main() -> Result<(), RedisError> { let config = RedisConfig::default(); let perf = PerformanceConfig::default(); let policy = ReconnectPolicy::default(); let client = RedisClient::new(config, perf, Some(policy));
// connect to the server, returning a handle to the task that drives the connection let jh = client.connect(); let _ = client.waitforconnect().await?;
// convert responses to many common Rust types
let foo: Option
let _: () = client.set("foo", "bar", None, None, false).await?;
// or use turbofish to declare response types
println!("Foo: {:?}", client.get
// or use a lower level interface for responses to defer parsing, etc let foo: RedisValue = client.get("foo").await?; asserteq!(foo.asstr().unwrap(), "bar");
let _ = client.quit().await?; let _ = jh.await; Ok(()) } ```
See the examples for more.
With cargo edit.
cargo add fred
MONITOR
command. native-tls
and/or rustls
.Note: Fred requires Tokio 1.x or above. Actix users must be using 4.x or above as a result.
This crate supports tracing via the tracing crate. See the tracing info for more information.
This feature is disabled by default, but callers can opt-in via the full-tracing
or partial-tracing
features.
To enable logs use the environment variable RUST_LOG
with a value of trace
, debug
, warn
, error
, or info
. See the documentation for env_logger for more information.
When a client is initialized it will generate a unique client name with a prefix of fred-
. This name will appear in all logging statements on the client.
| Name | Default | Description |
|-------------------------|---------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| enable-native-tls | | Enable TLS support via native-tls. |
| enable-rustls | | Enable TLS support via rustls. |
| vendored-openssl | | Enable the native-tls/vendored
feature, if possible. |
| ignore-auth-error | x | Ignore auth errors that occur when a password is supplied but not required. |
| metrics | | Enable the metrics interface to track overall latency, network latency, and request/response sizes. |
| reconnect-on-auth-error | | A NOAUTH error is treated the same as a general connection failure and the client will reconnect based on the reconnection policy. This is recommended if callers are using ElastiCache. |
| pool-prefer-active | x | Prefer connected clients over clients in a disconnected state when using the RedisPool
interface. |
| full-tracing | | Enable full tracing support. This can emit a lot of data so a partial tracing feature is also provided. |
| partial-tracing | | Enable partial tracing support, only emitting traces for top level commands and network latency. Note: this has a non-trivial impact on performance. |
| blocking-encoding | | Use a blocking task for encoding or decoding frames over a certain size. This can be useful for clients that send or receive large payloads, but will only work when used with a multi-thread Tokio runtime. |
| network-logs | | Enable TRACE level logging statements that will print out all data sent to or received from the server. These are the only logging statements that can ever contain potentially sensitive user data. |
| custom-reconnect-errors | | Enable an interface for callers to customize the types of errors that should automatically trigger reconnection logic. |
| monitor | | Enable an interface for running the MONITOR
command. |
| sentinel-client | | Enable an interface for communicating directly with Sentinel nodes. This is not necessary to use normal Redis clients behind a sentinel layer. |
| sentinel-auth | | Enable an interface for using different authentication credentials to sentinel nodes. |
| subscriber-client | | Enable a higher level subscriber client that manages channel subscription state for callers. |
| serde-json | | Enable an interface to automatically convert Redis types to JSON. |
| no-client-setname | | Disable the automatic CLIENT SETNAME
command used to associate server logs with client logs. |
| mocks | | Enable a mocking layer interface that can be used to intercept and process commands in tests. |
| dns | | Enable an interface that allows callers to override the DNS lookup logic. |
Prior to the introduction of ACL commands in Redis version 6 clients would authenticate with a single password. If callers are not using the ACL interface, or using Redis version <=5.x, they should configure the client to automatically authenticate by using the password
field on the RedisConfig
and leaving the username
field as None
.
If callers are using ACLs and Redis version >=6.x they can configure the client to automatically authenticate by using the username
and password
fields on the provided RedisConfig
.
To use the Redis Sentinel interface callers should provide a ServerConfig::Sentinel
variant when creating the client's RedisConfig
. This should contain the host/port tuples for the known sentinel nodes when first creating the client.
The client will automatically update these values in place as sentinel nodes change whenever connections to the primary Redis server close. Callers can inspect these changes with the client_config
function on any RedisClient
that uses the sentinel interface.
Note: Sentinel connections will use the same TLS configuration options as the connections to the Redis servers. By default connections will also use the same authentication credentials as well unless the sentinel-auth
feature is enabled.
Callers can also use the sentinel-client
feature to communicate directly with Sentinel nodes.
The custom-reconnect-errors
feature enables an interface on the globals to customize the list of errors that should automatically trigger reconnection logic (if configured).
In many cases applications respond to Redis errors by logging the error, maybe waiting and reconnecting, and then trying again. Whether to do this often depends on the prefix in the error message, and this interface allows callers to specify which errors should be handled this way.
Errors that trigger this can be seen with the on_error function.
See the testing documentation for more information.
Beware: the tests will periodically run flushall
.
See the contributing documentation for info on adding new commands.