Struct redlock::Lock [] [src]

pub struct Lock<'a> {
    pub resource: &'a [u8],
    pub val: Vec<u8>,
    pub validity_time: usize,
}

Fields

The resource to lock. Will be used as the key in Redis.

The value for this lock.

Time the lock is still valid. Should only be slightly smaller than the requested TTL.