[][src]Enum redis_async_pool::Ttl

pub enum Ttl {
    Simple(Duration),
    Fuzzy {
        min: Duration,
        fuzz: Duration,
    },
    Once,
}

Time to live of a connection

Variants

Simple(Duration)

Connection will expire after the given duration

Fuzzy

Connection will expire after at least min time and at most min + fuzz time.

Actual ttl is computed at connection creation by adding min duration to a random duration between 0 and fuzz.

Fields of Fuzzy

min: Durationfuzz: Duration
Once

The connection will not been reused. A new connection will be created for each get() on the pool.

Enabling Once ttl means the pool will not keep any connection opened. So it won't really act as a pool of connection.

Auto Trait Implementations

impl RefUnwindSafe for Ttl

impl Send for Ttl

impl Sync for Ttl

impl Unpin for Ttl

impl UnwindSafe for Ttl

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