Struct redis_async::client::PairedConnection [] [src]

pub struct PairedConnection { /* fields omitted */ }

Methods

impl PairedConnection
[src]

Sends a command to Redis.

The message must be in the format of a single RESP message (or a format for which a conversion trait is defined). Returned is a future that resolves to a RESP message containing the result.

Behind the scenes the message is queued up and sent to Redis asynchronously before the future is realised. As such, it is guaranteed that messages are sent in the same order that send is called.