Struct redlock::Lock
[−]
[src]
pub struct Lock<'a> {
pub resource: &'a [u8],
pub val: Vec<u8>,
pub validity_time: usize,
}Fields
resource: &'a [u8]
The resource to lock. Will be used as the key in Redis.
val: Vec<u8>
The value for this lock.
validity_time: usize
Time the lock is still valid. Should only be slightly smaller than the requested TTL.