[][src]Struct redis_cluster_rs::Client

pub struct Client { /* fields omitted */ }

This is a Redis cluster client.

Implementations

impl Client[src]

pub fn open<T: IntoConnectionInfo>(initial_nodes: Vec<T>) -> RedisResult<Client>[src]

Connect to a redis cluster server and return a cluster client. This does not actually open a connection yet but it performs some basic checks on the URL. The password of initial nodes must be the same all.

Errors

If it is failed to parse initial_nodes or the initial nodes has different password, an error is returned.

pub fn open_with_auth<T: IntoConnectionInfo>(
    initial_nodes: Vec<T>,
    password: String
) -> RedisResult<Client>
[src]

👎 Deprecated:

Please use Builder instead

Connect to a redis cluster server with authentication and return a cluster client. This does not actually open a connection yet but it performs some basic checks on the URL.

Redis cluster's password must be the same all. This function is not use the password of initial nodes.

Errors

If it is failed to parse initial_nodes, an error is returned.

pub fn get_connection(&self) -> RedisResult<Connection>[src]

Open and get a Redis cluster connection.

Errors

If it is failed to open connections and to create slots, an error is returned.

Trait Implementations

impl Clone for Client[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

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.

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