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

pub struct PairedConnection { /* fields omitted */ }

Methods

impl PairedConnection
[src]

[src]

Sends a command to Redis.

The message must be in the format of a single RESP message, this can be constructed manually or with the resp_array! macro. Returned is a future that resolves to the value returned from Redis. The type must be one for which the resp::FromResp trait is defined.

The future will fail for numerous reasons, including but not limited to: IO issues, conversion problems, and server-side errors being returned by Redis.

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.