[][src]Struct redis::cluster::ClusterClientBuilder

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

This is a ClusterClientBuilder of Redis cluster client.

Implementations

impl ClusterClientBuilder[src]

pub fn new<T: IntoConnectionInfo>(initial_nodes: Vec<T>) -> ClusterClientBuilder[src]

Generate the base configuration for new Client.

pub fn open(self) -> RedisResult<ClusterClient>[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 password(self, password: String) -> ClusterClientBuilder[src]

Set password for new ClusterClient.

pub fn readonly(self, readonly: bool) -> ClusterClientBuilder[src]

Set read only mode for new ClusterClient. Default is not read only mode. When it is set to readonly mode, all query use replica nodes except there are no replica nodes. If there are no replica nodes, it use master node.

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, 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>,