Expand description
Abstraction over Redis caches.
By default, this library only implements an empty noop client. With the impl
feature, the
actual Redis client is implemented.
Re-exports§
pub use redis;
Structs§
- A reference to a pooled connection from
PooledClient
. - Additional configuration options for a redis client.
- The various
RedisPool
s used within Relay. - A collection of static methods to load predefined Redis scripts.
- Stats about how the
RedisPool
is performing.
Enums§
- A wrapper Type for async redis connections. Conceptually it’s similar to
RedisPool
but async redis does not require a pool since the connections can just be cloned and are thread safe. - A pooled Redis client.
- An error returned from
RedisPool
. - Abstraction over cluster vs non-cluster mode.