Struct redis::cluster::ClusterConnection[][src]

pub struct ClusterConnection { /* fields omitted */ }
This is supported on crate feature cluster only.
Expand description

This is a connection of Redis cluster.

Implementations

impl ClusterConnection[src]

pub fn set_auto_reconnect(&self, value: bool)[src]

Set an auto reconnect attribute. Default value is true;

pub fn set_write_timeout(&self, dur: Option<Duration>) -> RedisResult<()>[src]

Sets the write timeout for the connection.

If the provided value is None, then send_packed_command call will block indefinitely. It is an error to pass the zero Duration to this method.

pub fn set_read_timeout(&self, dur: Option<Duration>) -> RedisResult<()>[src]

Sets the read timeout for the connection.

If the provided value is None, then recv_response call will block indefinitely. It is an error to pass the zero Duration to this method.

pub fn check_connection(&mut self) -> bool[src]

Check that all connections it has are available (PING internally).

Trait Implementations

impl ConnectionLike for ClusterConnection[src]

fn supports_pipelining(&self) -> bool[src]

fn req_command(&mut self, cmd: &Cmd) -> RedisResult<Value>[src]

Sends a Cmd into the TCP socket and reads a single response from it.

fn req_packed_command(&mut self, cmd: &[u8]) -> RedisResult<Value>[src]

Sends an already encoded (packed) command into the TCP socket and reads the single response from it. Read more

fn req_packed_commands(
    &mut self,
    cmd: &[u8],
    offset: usize,
    count: usize
) -> RedisResult<Vec<Value>>
[src]

Sends multiple already encoded (packed) command into the TCP socket and reads count responses from it. This is used to implement pipelining. Read more

fn get_db(&self) -> i64[src]

Returns the database this connection is bound to. Note that this information might be unreliable because it’s initially cached and also might be incorrect if the connection like object is not actually connected. Read more

fn is_open(&self) -> bool[src]

Returns the connection status. Read more

fn check_connection(&mut self) -> bool[src]

Check that all connections it has are available (PING internally).

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

pub fn into(self) -> U[src]

Performs the conversion.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

pub fn vzip(self) -> V