Expand description
Adds async IO support to redis.
Modules§
- Enables the tokio compatibility
Structs§
- Connection
Deprecated Represents a stateful redis TCP connection. - A
ConnectionManager
is a proxy that wraps a multiplexed connection and automatically reconnects to the server when necessary. - The configuration for reconnect mechanism and request timing for the ConnectionManager
- Represents a
Monitor
connection. - A connection object which can be cloned, allowing requests to be be sent concurrently on the same underlying connection (tcp/unix socket).
- A connection dedicated to pubsub messages.
- The sink part of a split async Pubsub.
- The stream part of a split async Pubsub.
- An error showing that the receiver
Traits§
- A trait for sender parts of a channel that can be used for sending push messages from async connection.
- Trait for objects that implements
AsyncRead
andAsyncWrite
- An async abstraction over connections.