pub struct Cmd { /* private fields */ }
Expand description
Represents redis commands.
Implementations§
§impl Cmd
impl Cmd
A command acts as a builder interface to creating encoded redis requests. This allows you to easily assemble a packed command by chaining arguments together.
Basic example:
redis::Cmd::new().arg("SET").arg("my_key").arg(42);
There is also a helper function called cmd
which makes it a
tiny bit shorter:
redis::cmd("SET").arg("my_key").arg(42);
Because Rust currently does not have an ideal system for lifetimes of temporaries, sometimes you need to hold on to the initially generated command:
let mut cmd = redis::cmd("SMEMBERS");
let mut iter : redis::Iter<i32> = cmd.arg("my_set").clone().iter(&mut con).unwrap();
pub fn with_capacity(arg_count: usize, size_of_data: usize) -> Cmd
pub fn with_capacity(arg_count: usize, size_of_data: usize) -> Cmd
Creates a new empty command, with at least the requested capacity.
pub fn arg<T>(&mut self, arg: T) -> &mut Cmdwhere
T: ToRedisArgs,
pub fn arg<T>(&mut self, arg: T) -> &mut Cmdwhere
T: ToRedisArgs,
Appends an argument to the command. The argument passed must
be a type that implements ToRedisArgs
. Most primitive types as
well as vectors of primitive types implement it.
For instance all of the following are valid:
redis::cmd("SET").arg(&["my_key", "my_value"]);
redis::cmd("SET").arg("my_key").arg(42);
redis::cmd("SET").arg("my_key").arg(b"my_value");
pub fn cursor_arg(&mut self, cursor: u64) -> &mut Cmd
pub fn cursor_arg(&mut self, cursor: u64) -> &mut Cmd
Works similar to arg
but adds a cursor argument. This is always
an integer and also flips the command implementation to support a
different mode for the iterators where the iterator will ask for
another batch of items when the local data is exhausted.
let mut cmd = redis::cmd("SSCAN");
let mut iter : redis::Iter<isize> =
cmd.arg("my_set").cursor_arg(0).clone().iter(&mut con).unwrap();
for x in iter {
// do something with the item
}
pub fn get_packed_command(&self) -> Vec<u8> ⓘ
pub fn get_packed_command(&self) -> Vec<u8> ⓘ
Returns the packed command as a byte vector.
pub fn in_scan_mode(&self) -> bool
pub fn in_scan_mode(&self) -> bool
Returns true if the command is in scan mode.
pub fn query<T>(&self, con: &mut dyn ConnectionLike) -> Result<T, RedisError>where
T: FromRedisValue,
pub fn query<T>(&self, con: &mut dyn ConnectionLike) -> Result<T, RedisError>where
T: FromRedisValue,
Sends the command as query to the connection and converts the result to the target redis value. This is the general way how you can retrieve data.
pub async fn query_async<T>(
&self,
con: &mut impl ConnectionLike,
) -> Result<T, RedisError>where
T: FromRedisValue,
pub async fn query_async<T>(
&self,
con: &mut impl ConnectionLike,
) -> Result<T, RedisError>where
T: FromRedisValue,
Async version of query
.
pub fn iter<T>(
self,
con: &mut dyn ConnectionLike,
) -> Result<Iter<'_, T>, RedisError>where
T: FromRedisValue,
pub fn iter<T>(
self,
con: &mut dyn ConnectionLike,
) -> Result<Iter<'_, T>, RedisError>where
T: FromRedisValue,
Similar to query()
but returns an iterator over the items of the
bulk result or iterator. In normal mode this is not in any way more
efficient than just querying into a Vec<T>
as it’s internally
implemented as buffering into a vector. This however is useful when
cursor_arg
was used in which case the iterator will query for more
items until the server side cursor is exhausted.
This is useful for commands such as SSCAN
, SCAN
and others.
One speciality of this function is that it will check if the response
looks like a cursor or not and always just looks at the payload.
This way you can use the function the same for responses in the
format of KEYS
(just a list) as well as SSCAN
(which returns a
tuple of cursor and list).
pub async fn iter_async<'a, T>(
self,
con: &'a mut (dyn ConnectionLike + Send),
) -> Result<AsyncIter<'a, T>, RedisError>where
T: FromRedisValue + 'a,
pub async fn iter_async<'a, T>(
self,
con: &'a mut (dyn ConnectionLike + Send),
) -> Result<AsyncIter<'a, T>, RedisError>where
T: FromRedisValue + 'a,
Similar to iter()
but returns an AsyncIter over the items of the
bulk result or iterator. A futures::Stream
is implemented on AsyncIter. In normal mode this is not in any way more
efficient than just querying into a Vec<T>
as it’s internally
implemented as buffering into a vector. This however is useful when
cursor_arg
was used in which case the stream will query for more
items until the server side cursor is exhausted.
This is useful for commands such as SSCAN
, SCAN
and others in async contexts.
One speciality of this function is that it will check if the response
looks like a cursor or not and always just looks at the payload.
This way you can use the function the same for responses in the
format of KEYS
(just a list) as well as SSCAN
(which returns a
tuple of cursor and list).
pub fn execute(&self, con: &mut dyn ConnectionLike)
👎Deprecated: Use Cmd::exec + unwrap, instead
pub fn execute(&self, con: &mut dyn ConnectionLike)
This is a shortcut to query()
that does not return a value and
will fail the task if the query fails because of an error. This is
mainly useful in examples and for simple commands like setting
keys.
This is equivalent to a call of query like this:
redis::cmd("PING").query::<()>(&mut con).unwrap();
pub fn exec(&self, con: &mut dyn ConnectionLike) -> Result<(), RedisError>
pub fn exec(&self, con: &mut dyn ConnectionLike) -> Result<(), RedisError>
This is an alternative to `query`` that can be used if you want to be able to handle a command’s success or failure but don’t care about the command’s response. For example, this is useful for “SET” commands for which the response’s content is not important. It avoids the need to define generic bounds for ().
pub async fn exec_async(
&self,
con: &mut impl ConnectionLike,
) -> Result<(), RedisError>
pub async fn exec_async( &self, con: &mut impl ConnectionLike, ) -> Result<(), RedisError>
This is an alternative to query_async
that can be used if you want to be able to handle a
command’s success or failure but don’t care about the command’s response. For example,
this is useful for “SET” commands for which the response’s content is not important.
It avoids the need to define generic bounds for ().
pub fn args_iter(&self) -> impl Clone + ExactSizeIterator
pub fn args_iter(&self) -> impl Clone + ExactSizeIterator
Returns an iterator over the arguments in this command (including the command name itself)
pub fn set_no_response(&mut self, nr: bool) -> &mut Cmd
pub fn set_no_response(&mut self, nr: bool) -> &mut Cmd
Client won’t read and wait for results. Currently only used for Pub/Sub commands in RESP3.
pub fn is_no_response(&self) -> bool
pub fn is_no_response(&self) -> bool
Check whether command’s result will be waited for.
§impl Cmd
impl Cmd
pub fn get<'a, K>(key: K) -> Cmdwhere
K: ToRedisArgs,
pub fn get<'a, K>(key: K) -> Cmdwhere
K: ToRedisArgs,
Get the value of a key. If key is a vec this becomes an MGET
.
pub fn set<'a, K, V>(key: K, value: V) -> Cmdwhere
K: ToRedisArgs,
V: ToRedisArgs,
pub fn set<'a, K, V>(key: K, value: V) -> Cmdwhere
K: ToRedisArgs,
V: ToRedisArgs,
Set the string value of a key.
pub fn set_options<'a, K, V>(key: K, value: V, options: SetOptions) -> Cmdwhere
K: ToRedisArgs,
V: ToRedisArgs,
pub fn set_options<'a, K, V>(key: K, value: V, options: SetOptions) -> Cmdwhere
K: ToRedisArgs,
V: ToRedisArgs,
Set the string value of a key with options.
pub fn set_multiple<'a, K, V>(items: &'a [(K, V)]) -> Cmdwhere
K: ToRedisArgs,
V: ToRedisArgs,
👎Deprecated since 0.22.4: Renamed to mset() to reflect Redis name
pub fn set_multiple<'a, K, V>(items: &'a [(K, V)]) -> Cmdwhere
K: ToRedisArgs,
V: ToRedisArgs,
Sets multiple keys to their values.
pub fn mset<'a, K, V>(items: &'a [(K, V)]) -> Cmdwhere
K: ToRedisArgs,
V: ToRedisArgs,
pub fn mset<'a, K, V>(items: &'a [(K, V)]) -> Cmdwhere
K: ToRedisArgs,
V: ToRedisArgs,
Sets multiple keys to their values.
pub fn set_ex<'a, K, V>(key: K, value: V, seconds: u64) -> Cmdwhere
K: ToRedisArgs,
V: ToRedisArgs,
pub fn set_ex<'a, K, V>(key: K, value: V, seconds: u64) -> Cmdwhere
K: ToRedisArgs,
V: ToRedisArgs,
Set the value and expiration of a key.
pub fn pset_ex<'a, K, V>(key: K, value: V, milliseconds: u64) -> Cmdwhere
K: ToRedisArgs,
V: ToRedisArgs,
pub fn pset_ex<'a, K, V>(key: K, value: V, milliseconds: u64) -> Cmdwhere
K: ToRedisArgs,
V: ToRedisArgs,
Set the value and expiration in milliseconds of a key.
pub fn set_nx<'a, K, V>(key: K, value: V) -> Cmdwhere
K: ToRedisArgs,
V: ToRedisArgs,
pub fn set_nx<'a, K, V>(key: K, value: V) -> Cmdwhere
K: ToRedisArgs,
V: ToRedisArgs,
Set the value of a key, only if the key does not exist
pub fn mset_nx<'a, K, V>(items: &'a [(K, V)]) -> Cmdwhere
K: ToRedisArgs,
V: ToRedisArgs,
pub fn mset_nx<'a, K, V>(items: &'a [(K, V)]) -> Cmdwhere
K: ToRedisArgs,
V: ToRedisArgs,
Sets multiple keys to their values failing if at least one already exists.
pub fn getset<'a, K, V>(key: K, value: V) -> Cmdwhere
K: ToRedisArgs,
V: ToRedisArgs,
pub fn getset<'a, K, V>(key: K, value: V) -> Cmdwhere
K: ToRedisArgs,
V: ToRedisArgs,
Set the string value of a key and return its old value.
pub fn getrange<'a, K>(key: K, from: isize, to: isize) -> Cmdwhere
K: ToRedisArgs,
pub fn getrange<'a, K>(key: K, from: isize, to: isize) -> Cmdwhere
K: ToRedisArgs,
Get a range of bytes/substring from the value of a key. Negative values provide an offset from the end of the value.
pub fn setrange<'a, K, V>(key: K, offset: isize, value: V) -> Cmdwhere
K: ToRedisArgs,
V: ToRedisArgs,
pub fn setrange<'a, K, V>(key: K, offset: isize, value: V) -> Cmdwhere
K: ToRedisArgs,
V: ToRedisArgs,
Overwrite the part of the value stored in key at the specified offset.
pub fn expire<'a, K>(key: K, seconds: i64) -> Cmdwhere
K: ToRedisArgs,
pub fn expire<'a, K>(key: K, seconds: i64) -> Cmdwhere
K: ToRedisArgs,
Set a key’s time to live in seconds.
pub fn expire_at<'a, K>(key: K, ts: i64) -> Cmdwhere
K: ToRedisArgs,
pub fn expire_at<'a, K>(key: K, ts: i64) -> Cmdwhere
K: ToRedisArgs,
Set the expiration for a key as a UNIX timestamp.
pub fn pexpire<'a, K>(key: K, ms: i64) -> Cmdwhere
K: ToRedisArgs,
pub fn pexpire<'a, K>(key: K, ms: i64) -> Cmdwhere
K: ToRedisArgs,
Set a key’s time to live in milliseconds.
pub fn pexpire_at<'a, K>(key: K, ts: i64) -> Cmdwhere
K: ToRedisArgs,
pub fn pexpire_at<'a, K>(key: K, ts: i64) -> Cmdwhere
K: ToRedisArgs,
Set the expiration for a key as a UNIX timestamp in milliseconds.
pub fn expire_time<'a, K>(key: K) -> Cmdwhere
K: ToRedisArgs,
pub fn expire_time<'a, K>(key: K) -> Cmdwhere
K: ToRedisArgs,
Get the time to live for a key in seconds.
pub fn pexpire_time<'a, K>(key: K) -> Cmdwhere
K: ToRedisArgs,
pub fn pexpire_time<'a, K>(key: K) -> Cmdwhere
K: ToRedisArgs,
Get the time to live for a key in milliseconds.
pub fn pttl<'a, K>(key: K) -> Cmdwhere
K: ToRedisArgs,
pub fn pttl<'a, K>(key: K) -> Cmdwhere
K: ToRedisArgs,
Get the expiration time of a key in milliseconds.
pub fn get_ex<'a, K>(key: K, expire_at: Expiry) -> Cmdwhere
K: ToRedisArgs,
pub fn get_ex<'a, K>(key: K, expire_at: Expiry) -> Cmdwhere
K: ToRedisArgs,
Get the value of a key and set expiration
pub fn rename<'a, K, N>(key: K, new_key: N) -> Cmdwhere
K: ToRedisArgs,
N: ToRedisArgs,
pub fn rename<'a, K, N>(key: K, new_key: N) -> Cmdwhere
K: ToRedisArgs,
N: ToRedisArgs,
Rename a key.
pub fn rename_nx<'a, K, N>(key: K, new_key: N) -> Cmdwhere
K: ToRedisArgs,
N: ToRedisArgs,
pub fn rename_nx<'a, K, N>(key: K, new_key: N) -> Cmdwhere
K: ToRedisArgs,
N: ToRedisArgs,
Rename a key, only if the new key does not exist.
pub fn append<'a, K, V>(key: K, value: V) -> Cmdwhere
K: ToRedisArgs,
V: ToRedisArgs,
pub fn append<'a, K, V>(key: K, value: V) -> Cmdwhere
K: ToRedisArgs,
V: ToRedisArgs,
Append a value to a key.
pub fn incr<'a, K, V>(key: K, delta: V) -> Cmdwhere
K: ToRedisArgs,
V: ToRedisArgs,
pub fn incr<'a, K, V>(key: K, delta: V) -> Cmdwhere
K: ToRedisArgs,
V: ToRedisArgs,
Increment the numeric value of a key by the given amount. This
issues a INCRBY
or INCRBYFLOAT
depending on the type.
pub fn decr<'a, K, V>(key: K, delta: V) -> Cmdwhere
K: ToRedisArgs,
V: ToRedisArgs,
pub fn decr<'a, K, V>(key: K, delta: V) -> Cmdwhere
K: ToRedisArgs,
V: ToRedisArgs,
Decrement the numeric value of a key by the given amount.
pub fn setbit<'a, K>(key: K, offset: usize, value: bool) -> Cmdwhere
K: ToRedisArgs,
pub fn setbit<'a, K>(key: K, offset: usize, value: bool) -> Cmdwhere
K: ToRedisArgs,
Sets or clears the bit at offset in the string value stored at key.
pub fn getbit<'a, K>(key: K, offset: usize) -> Cmdwhere
K: ToRedisArgs,
pub fn getbit<'a, K>(key: K, offset: usize) -> Cmdwhere
K: ToRedisArgs,
Returns the bit value at offset in the string value stored at key.
pub fn bitcount_range<'a, K>(key: K, start: usize, end: usize) -> Cmdwhere
K: ToRedisArgs,
pub fn bitcount_range<'a, K>(key: K, start: usize, end: usize) -> Cmdwhere
K: ToRedisArgs,
Count set bits in a string in a range.
pub fn bit_and<'a, D, S>(dstkey: D, srckeys: S) -> Cmdwhere
D: ToRedisArgs,
S: ToRedisArgs,
pub fn bit_and<'a, D, S>(dstkey: D, srckeys: S) -> Cmdwhere
D: ToRedisArgs,
S: ToRedisArgs,
Perform a bitwise AND between multiple keys (containing string values) and store the result in the destination key.
pub fn bit_or<'a, D, S>(dstkey: D, srckeys: S) -> Cmdwhere
D: ToRedisArgs,
S: ToRedisArgs,
pub fn bit_or<'a, D, S>(dstkey: D, srckeys: S) -> Cmdwhere
D: ToRedisArgs,
S: ToRedisArgs,
Perform a bitwise OR between multiple keys (containing string values) and store the result in the destination key.
pub fn bit_xor<'a, D, S>(dstkey: D, srckeys: S) -> Cmdwhere
D: ToRedisArgs,
S: ToRedisArgs,
pub fn bit_xor<'a, D, S>(dstkey: D, srckeys: S) -> Cmdwhere
D: ToRedisArgs,
S: ToRedisArgs,
Perform a bitwise XOR between multiple keys (containing string values) and store the result in the destination key.
pub fn bit_not<'a, D, S>(dstkey: D, srckey: S) -> Cmdwhere
D: ToRedisArgs,
S: ToRedisArgs,
pub fn bit_not<'a, D, S>(dstkey: D, srckey: S) -> Cmdwhere
D: ToRedisArgs,
S: ToRedisArgs,
Perform a bitwise NOT of the key (containing string values) and store the result in the destination key.
pub fn strlen<'a, K>(key: K) -> Cmdwhere
K: ToRedisArgs,
pub fn strlen<'a, K>(key: K) -> Cmdwhere
K: ToRedisArgs,
Get the length of the value stored in a key.
pub fn hget<'a, K, F>(key: K, field: F) -> Cmdwhere
K: ToRedisArgs,
F: ToRedisArgs,
pub fn hget<'a, K, F>(key: K, field: F) -> Cmdwhere
K: ToRedisArgs,
F: ToRedisArgs,
Gets a single (or multiple) fields from a hash.
pub fn hdel<'a, K, F>(key: K, field: F) -> Cmdwhere
K: ToRedisArgs,
F: ToRedisArgs,
pub fn hdel<'a, K, F>(key: K, field: F) -> Cmdwhere
K: ToRedisArgs,
F: ToRedisArgs,
Deletes a single (or multiple) fields from a hash.
pub fn hset<'a, K, F, V>(key: K, field: F, value: V) -> Cmdwhere
K: ToRedisArgs,
F: ToRedisArgs,
V: ToRedisArgs,
pub fn hset<'a, K, F, V>(key: K, field: F, value: V) -> Cmdwhere
K: ToRedisArgs,
F: ToRedisArgs,
V: ToRedisArgs,
Sets a single field in a hash.
pub fn hset_nx<'a, K, F, V>(key: K, field: F, value: V) -> Cmdwhere
K: ToRedisArgs,
F: ToRedisArgs,
V: ToRedisArgs,
pub fn hset_nx<'a, K, F, V>(key: K, field: F, value: V) -> Cmdwhere
K: ToRedisArgs,
F: ToRedisArgs,
V: ToRedisArgs,
Sets a single field in a hash if it does not exist.
pub fn hset_multiple<'a, K, F, V>(key: K, items: &'a [(F, V)]) -> Cmdwhere
K: ToRedisArgs,
F: ToRedisArgs,
V: ToRedisArgs,
pub fn hset_multiple<'a, K, F, V>(key: K, items: &'a [(F, V)]) -> Cmdwhere
K: ToRedisArgs,
F: ToRedisArgs,
V: ToRedisArgs,
Sets a multiple fields in a hash.
pub fn hincr<'a, K, F, D>(key: K, field: F, delta: D) -> Cmdwhere
K: ToRedisArgs,
F: ToRedisArgs,
D: ToRedisArgs,
pub fn hincr<'a, K, F, D>(key: K, field: F, delta: D) -> Cmdwhere
K: ToRedisArgs,
F: ToRedisArgs,
D: ToRedisArgs,
Increments a value.
pub fn hexists<'a, K, F>(key: K, field: F) -> Cmdwhere
K: ToRedisArgs,
F: ToRedisArgs,
pub fn hexists<'a, K, F>(key: K, field: F) -> Cmdwhere
K: ToRedisArgs,
F: ToRedisArgs,
Checks if a field in a hash exists.
pub fn httl<'a, K, F>(key: K, fields: F) -> Cmdwhere
K: ToRedisArgs,
F: ToRedisArgs,
pub fn httl<'a, K, F>(key: K, fields: F) -> Cmdwhere
K: ToRedisArgs,
F: ToRedisArgs,
Get one or more fields TTL in seconds.
pub fn hpttl<'a, K, F>(key: K, fields: F) -> Cmdwhere
K: ToRedisArgs,
F: ToRedisArgs,
pub fn hpttl<'a, K, F>(key: K, fields: F) -> Cmdwhere
K: ToRedisArgs,
F: ToRedisArgs,
Get one or more fields TTL in milliseconds.
pub fn hexpire<'a, K, F>(
key: K,
seconds: i64,
opt: ExpireOption,
fields: F,
) -> Cmdwhere
K: ToRedisArgs,
F: ToRedisArgs,
pub fn hexpire<'a, K, F>(
key: K,
seconds: i64,
opt: ExpireOption,
fields: F,
) -> Cmdwhere
K: ToRedisArgs,
F: ToRedisArgs,
Set one or more fields time to live in seconds.
pub fn hexpire_at<'a, K, F>(
key: K,
ts: i64,
opt: ExpireOption,
fields: F,
) -> Cmdwhere
K: ToRedisArgs,
F: ToRedisArgs,
pub fn hexpire_at<'a, K, F>(
key: K,
ts: i64,
opt: ExpireOption,
fields: F,
) -> Cmdwhere
K: ToRedisArgs,
F: ToRedisArgs,
Set the expiration for one or more fields as a UNIX timestamp in milliseconds.
pub fn hexpire_time<'a, K, F>(key: K, fields: F) -> Cmdwhere
K: ToRedisArgs,
F: ToRedisArgs,
pub fn hexpire_time<'a, K, F>(key: K, fields: F) -> Cmdwhere
K: ToRedisArgs,
F: ToRedisArgs,
Returns the absolute Unix expiration timestamp in seconds.
pub fn hpersist<'a, K, F>(key: K, fields: F) -> Cmdwhere
K: ToRedisArgs,
F: ToRedisArgs,
pub fn hpersist<'a, K, F>(key: K, fields: F) -> Cmdwhere
K: ToRedisArgs,
F: ToRedisArgs,
Remove the expiration from a key.
pub fn hpexpire<'a, K, F>(
key: K,
milliseconds: i64,
opt: ExpireOption,
fields: F,
) -> Cmdwhere
K: ToRedisArgs,
F: ToRedisArgs,
pub fn hpexpire<'a, K, F>(
key: K,
milliseconds: i64,
opt: ExpireOption,
fields: F,
) -> Cmdwhere
K: ToRedisArgs,
F: ToRedisArgs,
Set one or more fields time to live in milliseconds.
pub fn hpexpire_at<'a, K, F>(
key: K,
ts: i64,
opt: ExpireOption,
fields: F,
) -> Cmdwhere
K: ToRedisArgs,
F: ToRedisArgs,
pub fn hpexpire_at<'a, K, F>(
key: K,
ts: i64,
opt: ExpireOption,
fields: F,
) -> Cmdwhere
K: ToRedisArgs,
F: ToRedisArgs,
Set the expiration for one or more fields as a UNIX timestamp in milliseconds.
pub fn hpexpire_time<'a, K, F>(key: K, fields: F) -> Cmdwhere
K: ToRedisArgs,
F: ToRedisArgs,
pub fn hpexpire_time<'a, K, F>(key: K, fields: F) -> Cmdwhere
K: ToRedisArgs,
F: ToRedisArgs,
Returns the absolute Unix expiration timestamp in seconds.
pub fn blmove<'a, S, D>(
srckey: S,
dstkey: D,
src_dir: Direction,
dst_dir: Direction,
timeout: f64,
) -> Cmdwhere
S: ToRedisArgs,
D: ToRedisArgs,
pub fn blmove<'a, S, D>(
srckey: S,
dstkey: D,
src_dir: Direction,
dst_dir: Direction,
timeout: f64,
) -> Cmdwhere
S: ToRedisArgs,
D: ToRedisArgs,
Pop an element from a list, push it to another list and return it; or block until one is available
pub fn blmpop<'a, K>(
timeout: f64,
numkeys: usize,
key: K,
dir: Direction,
count: usize,
) -> Cmdwhere
K: ToRedisArgs,
pub fn blmpop<'a, K>(
timeout: f64,
numkeys: usize,
key: K,
dir: Direction,
count: usize,
) -> Cmdwhere
K: ToRedisArgs,
Pops count
elements from the first non-empty list key from the list of
provided key names; or blocks until one is available.
pub fn blpop<'a, K>(key: K, timeout: f64) -> Cmdwhere
K: ToRedisArgs,
pub fn blpop<'a, K>(key: K, timeout: f64) -> Cmdwhere
K: ToRedisArgs,
Remove and get the first element in a list, or block until one is available.
pub fn brpop<'a, K>(key: K, timeout: f64) -> Cmdwhere
K: ToRedisArgs,
pub fn brpop<'a, K>(key: K, timeout: f64) -> Cmdwhere
K: ToRedisArgs,
Remove and get the last element in a list, or block until one is available.
pub fn brpoplpush<'a, S, D>(srckey: S, dstkey: D, timeout: f64) -> Cmdwhere
S: ToRedisArgs,
D: ToRedisArgs,
pub fn brpoplpush<'a, S, D>(srckey: S, dstkey: D, timeout: f64) -> Cmdwhere
S: ToRedisArgs,
D: ToRedisArgs,
Pop a value from a list, push it to another list and return it; or block until one is available.
pub fn lindex<'a, K>(key: K, index: isize) -> Cmdwhere
K: ToRedisArgs,
pub fn lindex<'a, K>(key: K, index: isize) -> Cmdwhere
K: ToRedisArgs,
Get an element from a list by its index.
pub fn linsert_before<'a, K, P, V>(key: K, pivot: P, value: V) -> Cmdwhere
K: ToRedisArgs,
P: ToRedisArgs,
V: ToRedisArgs,
pub fn linsert_before<'a, K, P, V>(key: K, pivot: P, value: V) -> Cmdwhere
K: ToRedisArgs,
P: ToRedisArgs,
V: ToRedisArgs,
Insert an element before another element in a list.
pub fn linsert_after<'a, K, P, V>(key: K, pivot: P, value: V) -> Cmdwhere
K: ToRedisArgs,
P: ToRedisArgs,
V: ToRedisArgs,
pub fn linsert_after<'a, K, P, V>(key: K, pivot: P, value: V) -> Cmdwhere
K: ToRedisArgs,
P: ToRedisArgs,
V: ToRedisArgs,
Insert an element after another element in a list.
pub fn lmove<'a, S, D>(
srckey: S,
dstkey: D,
src_dir: Direction,
dst_dir: Direction,
) -> Cmdwhere
S: ToRedisArgs,
D: ToRedisArgs,
pub fn lmove<'a, S, D>(
srckey: S,
dstkey: D,
src_dir: Direction,
dst_dir: Direction,
) -> Cmdwhere
S: ToRedisArgs,
D: ToRedisArgs,
Pop an element a list, push it to another list and return it
pub fn lmpop<'a, K>(numkeys: usize, key: K, dir: Direction, count: usize) -> Cmdwhere
K: ToRedisArgs,
pub fn lmpop<'a, K>(numkeys: usize, key: K, dir: Direction, count: usize) -> Cmdwhere
K: ToRedisArgs,
Pops count
elements from the first non-empty list key from the list of
provided key names.
pub fn lpop<'a, K>(key: K, count: Option<NonZero<usize>>) -> Cmdwhere
K: ToRedisArgs,
pub fn lpop<'a, K>(key: K, count: Option<NonZero<usize>>) -> Cmdwhere
K: ToRedisArgs,
Removes and returns the up to count
first elements of the list stored at key.
If count
is not specified, then defaults to first element.
pub fn lpos<'a, K, V>(key: K, value: V, options: LposOptions) -> Cmdwhere
K: ToRedisArgs,
V: ToRedisArgs,
pub fn lpos<'a, K, V>(key: K, value: V, options: LposOptions) -> Cmdwhere
K: ToRedisArgs,
V: ToRedisArgs,
Returns the index of the first matching value of the list stored at key.
pub fn lpush<'a, K, V>(key: K, value: V) -> Cmdwhere
K: ToRedisArgs,
V: ToRedisArgs,
pub fn lpush<'a, K, V>(key: K, value: V) -> Cmdwhere
K: ToRedisArgs,
V: ToRedisArgs,
Insert all the specified values at the head of the list stored at key.
pub fn lpush_exists<'a, K, V>(key: K, value: V) -> Cmdwhere
K: ToRedisArgs,
V: ToRedisArgs,
pub fn lpush_exists<'a, K, V>(key: K, value: V) -> Cmdwhere
K: ToRedisArgs,
V: ToRedisArgs,
Inserts a value at the head of the list stored at key, only if key already exists and holds a list.
pub fn lrange<'a, K>(key: K, start: isize, stop: isize) -> Cmdwhere
K: ToRedisArgs,
pub fn lrange<'a, K>(key: K, start: isize, stop: isize) -> Cmdwhere
K: ToRedisArgs,
Returns the specified elements of the list stored at key.
pub fn lrem<'a, K, V>(key: K, count: isize, value: V) -> Cmdwhere
K: ToRedisArgs,
V: ToRedisArgs,
pub fn lrem<'a, K, V>(key: K, count: isize, value: V) -> Cmdwhere
K: ToRedisArgs,
V: ToRedisArgs,
Removes the first count occurrences of elements equal to value from the list stored at key.
pub fn ltrim<'a, K>(key: K, start: isize, stop: isize) -> Cmdwhere
K: ToRedisArgs,
pub fn ltrim<'a, K>(key: K, start: isize, stop: isize) -> Cmdwhere
K: ToRedisArgs,
Trim an existing list so that it will contain only the specified range of elements specified.
pub fn lset<'a, K, V>(key: K, index: isize, value: V) -> Cmdwhere
K: ToRedisArgs,
V: ToRedisArgs,
pub fn lset<'a, K, V>(key: K, index: isize, value: V) -> Cmdwhere
K: ToRedisArgs,
V: ToRedisArgs,
Sets the list element at index to value
pub fn rpop<'a, K>(key: K, count: Option<NonZero<usize>>) -> Cmdwhere
K: ToRedisArgs,
pub fn rpop<'a, K>(key: K, count: Option<NonZero<usize>>) -> Cmdwhere
K: ToRedisArgs,
Removes and returns the up to count
last elements of the list stored at key
If count
is not specified, then defaults to last element.
pub fn rpoplpush<'a, K, D>(key: K, dstkey: D) -> Cmdwhere
K: ToRedisArgs,
D: ToRedisArgs,
pub fn rpoplpush<'a, K, D>(key: K, dstkey: D) -> Cmdwhere
K: ToRedisArgs,
D: ToRedisArgs,
Pop a value from a list, push it to another list and return it.
pub fn rpush<'a, K, V>(key: K, value: V) -> Cmdwhere
K: ToRedisArgs,
V: ToRedisArgs,
pub fn rpush<'a, K, V>(key: K, value: V) -> Cmdwhere
K: ToRedisArgs,
V: ToRedisArgs,
Insert all the specified values at the tail of the list stored at key.
pub fn rpush_exists<'a, K, V>(key: K, value: V) -> Cmdwhere
K: ToRedisArgs,
V: ToRedisArgs,
pub fn rpush_exists<'a, K, V>(key: K, value: V) -> Cmdwhere
K: ToRedisArgs,
V: ToRedisArgs,
Inserts value at the tail of the list stored at key, only if key already exists and holds a list.
pub fn sadd<'a, K, M>(key: K, member: M) -> Cmdwhere
K: ToRedisArgs,
M: ToRedisArgs,
pub fn sadd<'a, K, M>(key: K, member: M) -> Cmdwhere
K: ToRedisArgs,
M: ToRedisArgs,
Add one or more members to a set.
pub fn sdiffstore<'a, D, K>(dstkey: D, keys: K) -> Cmdwhere
D: ToRedisArgs,
K: ToRedisArgs,
pub fn sdiffstore<'a, D, K>(dstkey: D, keys: K) -> Cmdwhere
D: ToRedisArgs,
K: ToRedisArgs,
Subtract multiple sets and store the resulting set in a key.
pub fn sinterstore<'a, D, K>(dstkey: D, keys: K) -> Cmdwhere
D: ToRedisArgs,
K: ToRedisArgs,
pub fn sinterstore<'a, D, K>(dstkey: D, keys: K) -> Cmdwhere
D: ToRedisArgs,
K: ToRedisArgs,
Intersect multiple sets and store the resulting set in a key.
pub fn sismember<'a, K, M>(key: K, member: M) -> Cmdwhere
K: ToRedisArgs,
M: ToRedisArgs,
pub fn sismember<'a, K, M>(key: K, member: M) -> Cmdwhere
K: ToRedisArgs,
M: ToRedisArgs,
Determine if a given value is a member of a set.
pub fn smismember<'a, K, M>(key: K, members: M) -> Cmdwhere
K: ToRedisArgs,
M: ToRedisArgs,
pub fn smismember<'a, K, M>(key: K, members: M) -> Cmdwhere
K: ToRedisArgs,
M: ToRedisArgs,
Determine if given values are members of a set.
pub fn smove<'a, S, D, M>(srckey: S, dstkey: D, member: M) -> Cmdwhere
S: ToRedisArgs,
D: ToRedisArgs,
M: ToRedisArgs,
pub fn smove<'a, S, D, M>(srckey: S, dstkey: D, member: M) -> Cmdwhere
S: ToRedisArgs,
D: ToRedisArgs,
M: ToRedisArgs,
Move a member from one set to another.
pub fn srandmember<'a, K>(key: K) -> Cmdwhere
K: ToRedisArgs,
pub fn srandmember<'a, K>(key: K) -> Cmdwhere
K: ToRedisArgs,
Get one random member from a set.
pub fn srandmember_multiple<'a, K>(key: K, count: usize) -> Cmdwhere
K: ToRedisArgs,
pub fn srandmember_multiple<'a, K>(key: K, count: usize) -> Cmdwhere
K: ToRedisArgs,
Get multiple random members from a set.
pub fn srem<'a, K, M>(key: K, member: M) -> Cmdwhere
K: ToRedisArgs,
M: ToRedisArgs,
pub fn srem<'a, K, M>(key: K, member: M) -> Cmdwhere
K: ToRedisArgs,
M: ToRedisArgs,
Remove one or more members from a set.
pub fn sunionstore<'a, D, K>(dstkey: D, keys: K) -> Cmdwhere
D: ToRedisArgs,
K: ToRedisArgs,
pub fn sunionstore<'a, D, K>(dstkey: D, keys: K) -> Cmdwhere
D: ToRedisArgs,
K: ToRedisArgs,
Add multiple sets and store the resulting set in a key.
pub fn zadd<'a, K, S, M>(key: K, member: M, score: S) -> Cmdwhere
K: ToRedisArgs,
S: ToRedisArgs,
M: ToRedisArgs,
pub fn zadd<'a, K, S, M>(key: K, member: M, score: S) -> Cmdwhere
K: ToRedisArgs,
S: ToRedisArgs,
M: ToRedisArgs,
Add one member to a sorted set, or update its score if it already exists.
pub fn zadd_multiple<'a, K, S, M>(key: K, items: &'a [(S, M)]) -> Cmdwhere
K: ToRedisArgs,
S: ToRedisArgs,
M: ToRedisArgs,
pub fn zadd_multiple<'a, K, S, M>(key: K, items: &'a [(S, M)]) -> Cmdwhere
K: ToRedisArgs,
S: ToRedisArgs,
M: ToRedisArgs,
Add multiple members to a sorted set, or update its score if it already exists.
pub fn zcount<'a, K, M, MM>(key: K, min: M, max: MM) -> Cmdwhere
K: ToRedisArgs,
M: ToRedisArgs,
MM: ToRedisArgs,
pub fn zcount<'a, K, M, MM>(key: K, min: M, max: MM) -> Cmdwhere
K: ToRedisArgs,
M: ToRedisArgs,
MM: ToRedisArgs,
Count the members in a sorted set with scores within the given values.
pub fn zincr<'a, K, M, D>(key: K, member: M, delta: D) -> Cmdwhere
K: ToRedisArgs,
M: ToRedisArgs,
D: ToRedisArgs,
pub fn zincr<'a, K, M, D>(key: K, member: M, delta: D) -> Cmdwhere
K: ToRedisArgs,
M: ToRedisArgs,
D: ToRedisArgs,
Increments the member in a sorted set at key by delta. If the member does not exist, it is added with delta as its score.
pub fn zinterstore<'a, D, K>(dstkey: D, keys: K) -> Cmdwhere
D: ToRedisArgs,
K: ToRedisArgs,
pub fn zinterstore<'a, D, K>(dstkey: D, keys: K) -> Cmdwhere
D: ToRedisArgs,
K: ToRedisArgs,
Intersect multiple sorted sets and store the resulting sorted set in a new key using SUM as aggregation function.
pub fn zinterstore_min<'a, D, K>(dstkey: D, keys: K) -> Cmdwhere
D: ToRedisArgs,
K: ToRedisArgs,
pub fn zinterstore_min<'a, D, K>(dstkey: D, keys: K) -> Cmdwhere
D: ToRedisArgs,
K: ToRedisArgs,
Intersect multiple sorted sets and store the resulting sorted set in a new key using MIN as aggregation function.
pub fn zinterstore_max<'a, D, K>(dstkey: D, keys: K) -> Cmdwhere
D: ToRedisArgs,
K: ToRedisArgs,
pub fn zinterstore_max<'a, D, K>(dstkey: D, keys: K) -> Cmdwhere
D: ToRedisArgs,
K: ToRedisArgs,
Intersect multiple sorted sets and store the resulting sorted set in a new key using MAX as aggregation function.
pub fn zinterstore_weights<'a, D, K, W>(dstkey: D, keys: &'a [(K, W)]) -> Cmdwhere
D: ToRedisArgs,
K: ToRedisArgs,
W: ToRedisArgs,
pub fn zinterstore_weights<'a, D, K, W>(dstkey: D, keys: &'a [(K, W)]) -> Cmdwhere
D: ToRedisArgs,
K: ToRedisArgs,
W: ToRedisArgs,
[Commands::zinterstore
], but with the ability to specify a
multiplication factor for each sorted set by pairing one with each key
in a tuple.
pub fn zinterstore_min_weights<'a, D, K, W>(
dstkey: D,
keys: &'a [(K, W)],
) -> Cmdwhere
D: ToRedisArgs,
K: ToRedisArgs,
W: ToRedisArgs,
pub fn zinterstore_min_weights<'a, D, K, W>(
dstkey: D,
keys: &'a [(K, W)],
) -> Cmdwhere
D: ToRedisArgs,
K: ToRedisArgs,
W: ToRedisArgs,
[Commands::zinterstore_min
], but with the ability to specify a
multiplication factor for each sorted set by pairing one with each key
in a tuple.
pub fn zinterstore_max_weights<'a, D, K, W>(
dstkey: D,
keys: &'a [(K, W)],
) -> Cmdwhere
D: ToRedisArgs,
K: ToRedisArgs,
W: ToRedisArgs,
pub fn zinterstore_max_weights<'a, D, K, W>(
dstkey: D,
keys: &'a [(K, W)],
) -> Cmdwhere
D: ToRedisArgs,
K: ToRedisArgs,
W: ToRedisArgs,
[Commands::zinterstore_max
], but with the ability to specify a
multiplication factor for each sorted set by pairing one with each key
in a tuple.
pub fn zlexcount<'a, K, M, MM>(key: K, min: M, max: MM) -> Cmdwhere
K: ToRedisArgs,
M: ToRedisArgs,
MM: ToRedisArgs,
pub fn zlexcount<'a, K, M, MM>(key: K, min: M, max: MM) -> Cmdwhere
K: ToRedisArgs,
M: ToRedisArgs,
MM: ToRedisArgs,
Count the number of members in a sorted set between a given lexicographical range.
pub fn bzpopmax<'a, K>(key: K, timeout: f64) -> Cmdwhere
K: ToRedisArgs,
pub fn bzpopmax<'a, K>(key: K, timeout: f64) -> Cmdwhere
K: ToRedisArgs,
Removes and returns the member with the highest score in a sorted set. Blocks until a member is available otherwise.
pub fn zpopmax<'a, K>(key: K, count: isize) -> Cmdwhere
K: ToRedisArgs,
pub fn zpopmax<'a, K>(key: K, count: isize) -> Cmdwhere
K: ToRedisArgs,
Removes and returns up to count members with the highest scores in a sorted set
pub fn bzpopmin<'a, K>(key: K, timeout: f64) -> Cmdwhere
K: ToRedisArgs,
pub fn bzpopmin<'a, K>(key: K, timeout: f64) -> Cmdwhere
K: ToRedisArgs,
Removes and returns the member with the lowest score in a sorted set. Blocks until a member is available otherwise.
pub fn zpopmin<'a, K>(key: K, count: isize) -> Cmdwhere
K: ToRedisArgs,
pub fn zpopmin<'a, K>(key: K, count: isize) -> Cmdwhere
K: ToRedisArgs,
Removes and returns up to count members with the lowest scores in a sorted set
pub fn bzmpop_max<'a, K>(timeout: f64, keys: K, count: isize) -> Cmdwhere
K: ToRedisArgs,
pub fn bzmpop_max<'a, K>(timeout: f64, keys: K, count: isize) -> Cmdwhere
K: ToRedisArgs,
Removes and returns up to count members with the highest scores, from the first non-empty sorted set in the provided list of key names. Blocks until a member is available otherwise.
pub fn zmpop_max<'a, K>(keys: K, count: isize) -> Cmdwhere
K: ToRedisArgs,
pub fn zmpop_max<'a, K>(keys: K, count: isize) -> Cmdwhere
K: ToRedisArgs,
Removes and returns up to count members with the highest scores, from the first non-empty sorted set in the provided list of key names.
pub fn bzmpop_min<'a, K>(timeout: f64, keys: K, count: isize) -> Cmdwhere
K: ToRedisArgs,
pub fn bzmpop_min<'a, K>(timeout: f64, keys: K, count: isize) -> Cmdwhere
K: ToRedisArgs,
Removes and returns up to count members with the lowest scores, from the first non-empty sorted set in the provided list of key names. Blocks until a member is available otherwise.
pub fn zmpop_min<'a, K>(keys: K, count: isize) -> Cmdwhere
K: ToRedisArgs,
pub fn zmpop_min<'a, K>(keys: K, count: isize) -> Cmdwhere
K: ToRedisArgs,
Removes and returns up to count members with the lowest scores, from the first non-empty sorted set in the provided list of key names.
pub fn zrandmember<'a, K>(key: K, count: Option<isize>) -> Cmdwhere
K: ToRedisArgs,
pub fn zrandmember<'a, K>(key: K, count: Option<isize>) -> Cmdwhere
K: ToRedisArgs,
Return up to count random members in a sorted set (or 1 if count == None
)
pub fn zrandmember_withscores<'a, K>(key: K, count: isize) -> Cmdwhere
K: ToRedisArgs,
pub fn zrandmember_withscores<'a, K>(key: K, count: isize) -> Cmdwhere
K: ToRedisArgs,
Return up to count random members in a sorted set with scores
pub fn zrange<'a, K>(key: K, start: isize, stop: isize) -> Cmdwhere
K: ToRedisArgs,
pub fn zrange<'a, K>(key: K, start: isize, stop: isize) -> Cmdwhere
K: ToRedisArgs,
Return a range of members in a sorted set, by index
pub fn zrange_withscores<'a, K>(key: K, start: isize, stop: isize) -> Cmdwhere
K: ToRedisArgs,
pub fn zrange_withscores<'a, K>(key: K, start: isize, stop: isize) -> Cmdwhere
K: ToRedisArgs,
Return a range of members in a sorted set, by index with scores.
pub fn zrangebylex<'a, K, M, MM>(key: K, min: M, max: MM) -> Cmdwhere
K: ToRedisArgs,
M: ToRedisArgs,
MM: ToRedisArgs,
pub fn zrangebylex<'a, K, M, MM>(key: K, min: M, max: MM) -> Cmdwhere
K: ToRedisArgs,
M: ToRedisArgs,
MM: ToRedisArgs,
Return a range of members in a sorted set, by lexicographical range.
pub fn zrangebylex_limit<'a, K, M, MM>(
key: K,
min: M,
max: MM,
offset: isize,
count: isize,
) -> Cmdwhere
K: ToRedisArgs,
M: ToRedisArgs,
MM: ToRedisArgs,
pub fn zrangebylex_limit<'a, K, M, MM>(
key: K,
min: M,
max: MM,
offset: isize,
count: isize,
) -> Cmdwhere
K: ToRedisArgs,
M: ToRedisArgs,
MM: ToRedisArgs,
Return a range of members in a sorted set, by lexicographical range with offset and limit.
pub fn zrevrangebylex<'a, K, MM, M>(key: K, max: MM, min: M) -> Cmdwhere
K: ToRedisArgs,
MM: ToRedisArgs,
M: ToRedisArgs,
pub fn zrevrangebylex<'a, K, MM, M>(key: K, max: MM, min: M) -> Cmdwhere
K: ToRedisArgs,
MM: ToRedisArgs,
M: ToRedisArgs,
Return a range of members in a sorted set, by lexicographical range.
pub fn zrevrangebylex_limit<'a, K, MM, M>(
key: K,
max: MM,
min: M,
offset: isize,
count: isize,
) -> Cmdwhere
K: ToRedisArgs,
MM: ToRedisArgs,
M: ToRedisArgs,
pub fn zrevrangebylex_limit<'a, K, MM, M>(
key: K,
max: MM,
min: M,
offset: isize,
count: isize,
) -> Cmdwhere
K: ToRedisArgs,
MM: ToRedisArgs,
M: ToRedisArgs,
Return a range of members in a sorted set, by lexicographical range with offset and limit.
pub fn zrangebyscore<'a, K, M, MM>(key: K, min: M, max: MM) -> Cmdwhere
K: ToRedisArgs,
M: ToRedisArgs,
MM: ToRedisArgs,
pub fn zrangebyscore<'a, K, M, MM>(key: K, min: M, max: MM) -> Cmdwhere
K: ToRedisArgs,
M: ToRedisArgs,
MM: ToRedisArgs,
Return a range of members in a sorted set, by score.
pub fn zrangebyscore_withscores<'a, K, M, MM>(key: K, min: M, max: MM) -> Cmdwhere
K: ToRedisArgs,
M: ToRedisArgs,
MM: ToRedisArgs,
pub fn zrangebyscore_withscores<'a, K, M, MM>(key: K, min: M, max: MM) -> Cmdwhere
K: ToRedisArgs,
M: ToRedisArgs,
MM: ToRedisArgs,
Return a range of members in a sorted set, by score with scores.
pub fn zrangebyscore_limit<'a, K, M, MM>(
key: K,
min: M,
max: MM,
offset: isize,
count: isize,
) -> Cmdwhere
K: ToRedisArgs,
M: ToRedisArgs,
MM: ToRedisArgs,
pub fn zrangebyscore_limit<'a, K, M, MM>(
key: K,
min: M,
max: MM,
offset: isize,
count: isize,
) -> Cmdwhere
K: ToRedisArgs,
M: ToRedisArgs,
MM: ToRedisArgs,
Return a range of members in a sorted set, by score with limit.
pub fn zrangebyscore_limit_withscores<'a, K, M, MM>(
key: K,
min: M,
max: MM,
offset: isize,
count: isize,
) -> Cmdwhere
K: ToRedisArgs,
M: ToRedisArgs,
MM: ToRedisArgs,
pub fn zrangebyscore_limit_withscores<'a, K, M, MM>(
key: K,
min: M,
max: MM,
offset: isize,
count: isize,
) -> Cmdwhere
K: ToRedisArgs,
M: ToRedisArgs,
MM: ToRedisArgs,
Return a range of members in a sorted set, by score with limit with scores.
pub fn zrank<'a, K, M>(key: K, member: M) -> Cmdwhere
K: ToRedisArgs,
M: ToRedisArgs,
pub fn zrank<'a, K, M>(key: K, member: M) -> Cmdwhere
K: ToRedisArgs,
M: ToRedisArgs,
Determine the index of a member in a sorted set.
pub fn zrem<'a, K, M>(key: K, members: M) -> Cmdwhere
K: ToRedisArgs,
M: ToRedisArgs,
pub fn zrem<'a, K, M>(key: K, members: M) -> Cmdwhere
K: ToRedisArgs,
M: ToRedisArgs,
Remove one or more members from a sorted set.
pub fn zrembylex<'a, K, M, MM>(key: K, min: M, max: MM) -> Cmdwhere
K: ToRedisArgs,
M: ToRedisArgs,
MM: ToRedisArgs,
pub fn zrembylex<'a, K, M, MM>(key: K, min: M, max: MM) -> Cmdwhere
K: ToRedisArgs,
M: ToRedisArgs,
MM: ToRedisArgs,
Remove all members in a sorted set between the given lexicographical range.
pub fn zremrangebyrank<'a, K>(key: K, start: isize, stop: isize) -> Cmdwhere
K: ToRedisArgs,
pub fn zremrangebyrank<'a, K>(key: K, start: isize, stop: isize) -> Cmdwhere
K: ToRedisArgs,
Remove all members in a sorted set within the given indexes.
pub fn zrembyscore<'a, K, M, MM>(key: K, min: M, max: MM) -> Cmdwhere
K: ToRedisArgs,
M: ToRedisArgs,
MM: ToRedisArgs,
pub fn zrembyscore<'a, K, M, MM>(key: K, min: M, max: MM) -> Cmdwhere
K: ToRedisArgs,
M: ToRedisArgs,
MM: ToRedisArgs,
Remove all members in a sorted set within the given scores.
pub fn zrevrange<'a, K>(key: K, start: isize, stop: isize) -> Cmdwhere
K: ToRedisArgs,
pub fn zrevrange<'a, K>(key: K, start: isize, stop: isize) -> Cmdwhere
K: ToRedisArgs,
Return a range of members in a sorted set, by index, with scores ordered from high to low.
pub fn zrevrange_withscores<'a, K>(key: K, start: isize, stop: isize) -> Cmdwhere
K: ToRedisArgs,
pub fn zrevrange_withscores<'a, K>(key: K, start: isize, stop: isize) -> Cmdwhere
K: ToRedisArgs,
Return a range of members in a sorted set, by index, with scores ordered from high to low.
pub fn zrevrangebyscore<'a, K, MM, M>(key: K, max: MM, min: M) -> Cmdwhere
K: ToRedisArgs,
MM: ToRedisArgs,
M: ToRedisArgs,
pub fn zrevrangebyscore<'a, K, MM, M>(key: K, max: MM, min: M) -> Cmdwhere
K: ToRedisArgs,
MM: ToRedisArgs,
M: ToRedisArgs,
Return a range of members in a sorted set, by score.
pub fn zrevrangebyscore_withscores<'a, K, MM, M>(key: K, max: MM, min: M) -> Cmdwhere
K: ToRedisArgs,
MM: ToRedisArgs,
M: ToRedisArgs,
pub fn zrevrangebyscore_withscores<'a, K, MM, M>(key: K, max: MM, min: M) -> Cmdwhere
K: ToRedisArgs,
MM: ToRedisArgs,
M: ToRedisArgs,
Return a range of members in a sorted set, by score with scores.
pub fn zrevrangebyscore_limit<'a, K, MM, M>(
key: K,
max: MM,
min: M,
offset: isize,
count: isize,
) -> Cmdwhere
K: ToRedisArgs,
MM: ToRedisArgs,
M: ToRedisArgs,
pub fn zrevrangebyscore_limit<'a, K, MM, M>(
key: K,
max: MM,
min: M,
offset: isize,
count: isize,
) -> Cmdwhere
K: ToRedisArgs,
MM: ToRedisArgs,
M: ToRedisArgs,
Return a range of members in a sorted set, by score with limit.
pub fn zrevrangebyscore_limit_withscores<'a, K, MM, M>(
key: K,
max: MM,
min: M,
offset: isize,
count: isize,
) -> Cmdwhere
K: ToRedisArgs,
MM: ToRedisArgs,
M: ToRedisArgs,
pub fn zrevrangebyscore_limit_withscores<'a, K, MM, M>(
key: K,
max: MM,
min: M,
offset: isize,
count: isize,
) -> Cmdwhere
K: ToRedisArgs,
MM: ToRedisArgs,
M: ToRedisArgs,
Return a range of members in a sorted set, by score with limit with scores.
pub fn zrevrank<'a, K, M>(key: K, member: M) -> Cmdwhere
K: ToRedisArgs,
M: ToRedisArgs,
pub fn zrevrank<'a, K, M>(key: K, member: M) -> Cmdwhere
K: ToRedisArgs,
M: ToRedisArgs,
Determine the index of a member in a sorted set, with scores ordered from high to low.
pub fn zscore<'a, K, M>(key: K, member: M) -> Cmdwhere
K: ToRedisArgs,
M: ToRedisArgs,
pub fn zscore<'a, K, M>(key: K, member: M) -> Cmdwhere
K: ToRedisArgs,
M: ToRedisArgs,
Get the score associated with the given member in a sorted set.
pub fn zscore_multiple<'a, K, M>(key: K, members: &'a [M]) -> Cmdwhere
K: ToRedisArgs,
M: ToRedisArgs,
pub fn zscore_multiple<'a, K, M>(key: K, members: &'a [M]) -> Cmdwhere
K: ToRedisArgs,
M: ToRedisArgs,
Get the scores associated with multiple members in a sorted set.
pub fn zunionstore<'a, D, K>(dstkey: D, keys: K) -> Cmdwhere
D: ToRedisArgs,
K: ToRedisArgs,
pub fn zunionstore<'a, D, K>(dstkey: D, keys: K) -> Cmdwhere
D: ToRedisArgs,
K: ToRedisArgs,
Unions multiple sorted sets and store the resulting sorted set in a new key using SUM as aggregation function.
pub fn zunionstore_min<'a, D, K>(dstkey: D, keys: K) -> Cmdwhere
D: ToRedisArgs,
K: ToRedisArgs,
pub fn zunionstore_min<'a, D, K>(dstkey: D, keys: K) -> Cmdwhere
D: ToRedisArgs,
K: ToRedisArgs,
Unions multiple sorted sets and store the resulting sorted set in a new key using MIN as aggregation function.
pub fn zunionstore_max<'a, D, K>(dstkey: D, keys: K) -> Cmdwhere
D: ToRedisArgs,
K: ToRedisArgs,
pub fn zunionstore_max<'a, D, K>(dstkey: D, keys: K) -> Cmdwhere
D: ToRedisArgs,
K: ToRedisArgs,
Unions multiple sorted sets and store the resulting sorted set in a new key using MAX as aggregation function.
pub fn zunionstore_weights<'a, D, K, W>(dstkey: D, keys: &'a [(K, W)]) -> Cmdwhere
D: ToRedisArgs,
K: ToRedisArgs,
W: ToRedisArgs,
pub fn zunionstore_weights<'a, D, K, W>(dstkey: D, keys: &'a [(K, W)]) -> Cmdwhere
D: ToRedisArgs,
K: ToRedisArgs,
W: ToRedisArgs,
[Commands::zunionstore
], but with the ability to specify a
multiplication factor for each sorted set by pairing one with each key
in a tuple.
pub fn zunionstore_min_weights<'a, D, K, W>(
dstkey: D,
keys: &'a [(K, W)],
) -> Cmdwhere
D: ToRedisArgs,
K: ToRedisArgs,
W: ToRedisArgs,
pub fn zunionstore_min_weights<'a, D, K, W>(
dstkey: D,
keys: &'a [(K, W)],
) -> Cmdwhere
D: ToRedisArgs,
K: ToRedisArgs,
W: ToRedisArgs,
[Commands::zunionstore_min
], but with the ability to specify a
multiplication factor for each sorted set by pairing one with each key
in a tuple.
pub fn zunionstore_max_weights<'a, D, K, W>(
dstkey: D,
keys: &'a [(K, W)],
) -> Cmdwhere
D: ToRedisArgs,
K: ToRedisArgs,
W: ToRedisArgs,
pub fn zunionstore_max_weights<'a, D, K, W>(
dstkey: D,
keys: &'a [(K, W)],
) -> Cmdwhere
D: ToRedisArgs,
K: ToRedisArgs,
W: ToRedisArgs,
[Commands::zunionstore_max
], but with the ability to specify a
multiplication factor for each sorted set by pairing one with each key
in a tuple.
pub fn pfadd<'a, K, E>(key: K, element: E) -> Cmdwhere
K: ToRedisArgs,
E: ToRedisArgs,
pub fn pfadd<'a, K, E>(key: K, element: E) -> Cmdwhere
K: ToRedisArgs,
E: ToRedisArgs,
Adds the specified elements to the specified HyperLogLog.
pub fn pfcount<'a, K>(key: K) -> Cmdwhere
K: ToRedisArgs,
pub fn pfcount<'a, K>(key: K) -> Cmdwhere
K: ToRedisArgs,
Return the approximated cardinality of the set(s) observed by the HyperLogLog at key(s).
pub fn pfmerge<'a, D, S>(dstkey: D, srckeys: S) -> Cmdwhere
D: ToRedisArgs,
S: ToRedisArgs,
pub fn pfmerge<'a, D, S>(dstkey: D, srckeys: S) -> Cmdwhere
D: ToRedisArgs,
S: ToRedisArgs,
Merge N different HyperLogLogs into a single one.
pub fn publish<'a, K, E>(channel: K, message: E) -> Cmdwhere
K: ToRedisArgs,
E: ToRedisArgs,
pub fn publish<'a, K, E>(channel: K, message: E) -> Cmdwhere
K: ToRedisArgs,
E: ToRedisArgs,
Posts a message to the given channel.
pub fn object_encoding<'a, K>(key: K) -> Cmdwhere
K: ToRedisArgs,
pub fn object_encoding<'a, K>(key: K) -> Cmdwhere
K: ToRedisArgs,
Returns the encoding of a key.
pub fn object_idletime<'a, K>(key: K) -> Cmdwhere
K: ToRedisArgs,
pub fn object_idletime<'a, K>(key: K) -> Cmdwhere
K: ToRedisArgs,
Returns the time in seconds since the last access of a key.
pub fn object_freq<'a, K>(key: K) -> Cmdwhere
K: ToRedisArgs,
pub fn object_freq<'a, K>(key: K) -> Cmdwhere
K: ToRedisArgs,
Returns the logarithmic access frequency counter of a key.
pub fn object_refcount<'a, K>(key: K) -> Cmdwhere
K: ToRedisArgs,
pub fn object_refcount<'a, K>(key: K) -> Cmdwhere
K: ToRedisArgs,
Returns the reference count of a key.
pub fn client_getname<'a>() -> Cmd
pub fn client_getname<'a>() -> Cmd
Returns the name of the current connection as set by CLIENT SETNAME.
pub fn acl_load<'a>() -> Cmd
pub fn acl_load<'a>() -> Cmd
When Redis is configured to use an ACL file (with the aclfile configuration option), this command will reload the ACLs from the file, replacing all the current ACL rules with the ones defined in the file.
pub fn acl_save<'a>() -> Cmd
pub fn acl_save<'a>() -> Cmd
When Redis is configured to use an ACL file (with the aclfile configuration option), this command will save the currently defined ACLs from the server memory to the ACL file.
pub fn acl_users<'a>() -> Cmd
pub fn acl_users<'a>() -> Cmd
Shows a list of all the usernames of the currently configured users in the Redis ACL system.
pub fn acl_getuser<'a, K>(username: K) -> Cmdwhere
K: ToRedisArgs,
pub fn acl_getuser<'a, K>(username: K) -> Cmdwhere
K: ToRedisArgs,
Returns all the rules defined for an existing ACL user.
pub fn acl_setuser<'a, K>(username: K) -> Cmdwhere
K: ToRedisArgs,
pub fn acl_setuser<'a, K>(username: K) -> Cmdwhere
K: ToRedisArgs,
Creates an ACL user without any privilege.
pub fn acl_setuser_rules<'a, K>(username: K, rules: &'a [Rule]) -> Cmdwhere
K: ToRedisArgs,
pub fn acl_setuser_rules<'a, K>(username: K, rules: &'a [Rule]) -> Cmdwhere
K: ToRedisArgs,
Creates an ACL user with the specified rules or modify the rules of an existing user.
pub fn acl_deluser<'a, K>(usernames: &'a [K]) -> Cmdwhere
K: ToRedisArgs,
pub fn acl_deluser<'a, K>(usernames: &'a [K]) -> Cmdwhere
K: ToRedisArgs,
Delete all the specified ACL users and terminate all the connections that are authenticated with such users.
pub fn acl_dryrun<'a, K, C, A>(username: K, command: C, args: A) -> Cmdwhere
K: ToRedisArgs,
C: ToRedisArgs,
A: ToRedisArgs,
pub fn acl_dryrun<'a, K, C, A>(username: K, command: C, args: A) -> Cmdwhere
K: ToRedisArgs,
C: ToRedisArgs,
A: ToRedisArgs,
Simulate the execution of a given command by a given user.
pub fn acl_cat_categoryname<'a, K>(categoryname: K) -> Cmdwhere
K: ToRedisArgs,
pub fn acl_cat_categoryname<'a, K>(categoryname: K) -> Cmdwhere
K: ToRedisArgs,
Shows all the Redis commands in the specified category.
pub fn acl_genpass<'a>() -> Cmd
pub fn acl_genpass<'a>() -> Cmd
Generates a 256-bits password starting from /dev/urandom if available.
pub fn acl_genpass_bits<'a>(bits: isize) -> Cmd
pub fn acl_genpass_bits<'a>(bits: isize) -> Cmd
Generates a 1-to-1024-bits password starting from /dev/urandom if available.
pub fn acl_whoami<'a>() -> Cmd
pub fn acl_whoami<'a>() -> Cmd
Returns the username the current connection is authenticated with.
pub fn acl_log_reset<'a>() -> Cmd
pub fn acl_log_reset<'a>() -> Cmd
Clears the ACL log.
pub fn geo_add<'a, K, M>(key: K, members: M) -> Cmdwhere
K: ToRedisArgs,
M: ToRedisArgs,
pub fn geo_add<'a, K, M>(key: K, members: M) -> Cmdwhere
K: ToRedisArgs,
M: ToRedisArgs,
Adds the specified geospatial items to the specified key.
Every member has to be written as a tuple of (longitude, latitude, member_name)
. It can be a single tuple, or a vector of tuples.
longitude, latitude
can be set using redis::geo::Coord
.
Returns the number of elements added to the sorted set, not including elements already existing for which the score was updated.
§Example
use redis::{Commands, Connection, RedisResult};
use redis::geo::Coord;
fn add_point(con: &mut Connection) -> RedisResult<isize> {
con.geo_add("my_gis", (Coord::lon_lat(13.361389, 38.115556), "Palermo"))
}
fn add_point_with_tuples(con: &mut Connection) -> RedisResult<isize> {
con.geo_add("my_gis", ("13.361389", "38.115556", "Palermo"))
}
fn add_many_points(con: &mut Connection) -> RedisResult<isize> {
con.geo_add("my_gis", &[
("13.361389", "38.115556", "Palermo"),
("15.087269", "37.502669", "Catania")
])
}
pub fn geo_dist<'a, K, M1, M2>(
key: K,
member1: M1,
member2: M2,
unit: Unit,
) -> Cmdwhere
K: ToRedisArgs,
M1: ToRedisArgs,
M2: ToRedisArgs,
pub fn geo_dist<'a, K, M1, M2>(
key: K,
member1: M1,
member2: M2,
unit: Unit,
) -> Cmdwhere
K: ToRedisArgs,
M1: ToRedisArgs,
M2: ToRedisArgs,
Return the distance between two members in the geospatial index represented by the sorted set.
If one or both the members are missing, the command returns NULL, so
it may be convenient to parse its response as either Option<f64>
or
Option<String>
.
§Example
use redis::{Commands, RedisResult};
use redis::geo::Unit;
fn get_dists(con: &mut redis::Connection) {
let x: RedisResult<f64> = con.geo_dist(
"my_gis",
"Palermo",
"Catania",
Unit::Kilometers
);
// x is Ok(166.2742)
let x: RedisResult<Option<f64>> = con.geo_dist(
"my_gis",
"Palermo",
"Atlantis",
Unit::Meters
);
// x is Ok(None)
}
pub fn geo_hash<'a, K, M>(key: K, members: M) -> Cmdwhere
K: ToRedisArgs,
M: ToRedisArgs,
pub fn geo_hash<'a, K, M>(key: K, members: M) -> Cmdwhere
K: ToRedisArgs,
M: ToRedisArgs,
Return valid Geohash strings representing the position of one or more members of the geospatial index represented by the sorted set at key.
§Example
use redis::{Commands, RedisResult};
fn get_hash(con: &mut redis::Connection) {
let x: RedisResult<Vec<String>> = con.geo_hash("my_gis", "Palermo");
// x is vec!["sqc8b49rny0"]
let x: RedisResult<Vec<String>> = con.geo_hash("my_gis", &["Palermo", "Catania"]);
// x is vec!["sqc8b49rny0", "sqdtr74hyu0"]
}
pub fn geo_pos<'a, K, M>(key: K, members: M) -> Cmdwhere
K: ToRedisArgs,
M: ToRedisArgs,
pub fn geo_pos<'a, K, M>(key: K, members: M) -> Cmdwhere
K: ToRedisArgs,
M: ToRedisArgs,
Return the positions of all the specified members of the geospatial index represented by the sorted set at key.
Every position is a pair of (longitude, latitude)
. redis::geo::Coord
can be used to convert these value in a struct.
§Example
use redis::{Commands, RedisResult};
use redis::geo::Coord;
fn get_position(con: &mut redis::Connection) {
let x: RedisResult<Vec<Vec<f64>>> = con.geo_pos("my_gis", &["Palermo", "Catania"]);
// x is [ [ 13.361389, 38.115556 ], [ 15.087269, 37.502669 ] ];
let x: Vec<Coord<f64>> = con.geo_pos("my_gis", "Palermo").unwrap();
// x[0].longitude is 13.361389
// x[0].latitude is 38.115556
}
pub fn geo_radius<'a, K>(
key: K,
longitude: f64,
latitude: f64,
radius: f64,
unit: Unit,
options: RadiusOptions,
) -> Cmdwhere
K: ToRedisArgs,
pub fn geo_radius<'a, K>(
key: K,
longitude: f64,
latitude: f64,
radius: f64,
unit: Unit,
options: RadiusOptions,
) -> Cmdwhere
K: ToRedisArgs,
Return the members of a sorted set populated with geospatial information
using geo_add
, which are within the borders of the area
specified with the center location and the maximum distance from the center
(the radius).
Every item in the result can be read with redis::geo::RadiusSearchResult
,
which support the multiple formats returned by GEORADIUS
.
use redis::{Commands, RedisResult};
use redis::geo::{RadiusOptions, RadiusSearchResult, RadiusOrder, Unit};
fn radius(con: &mut redis::Connection) -> Vec<RadiusSearchResult> {
let opts = RadiusOptions::default().with_dist().order(RadiusOrder::Asc);
con.geo_radius("my_gis", 15.90, 37.21, 51.39, Unit::Kilometers, opts).unwrap()
}
pub fn geo_radius_by_member<'a, K, M>(
key: K,
member: M,
radius: f64,
unit: Unit,
options: RadiusOptions,
) -> Cmdwhere
K: ToRedisArgs,
M: ToRedisArgs,
pub fn geo_radius_by_member<'a, K, M>(
key: K,
member: M,
radius: f64,
unit: Unit,
options: RadiusOptions,
) -> Cmdwhere
K: ToRedisArgs,
M: ToRedisArgs,
Retrieve members selected by distance with the center of member
. The
member itself is always contained in the results.
pub fn xack<'a, K, G, I>(key: K, group: G, ids: &'a [I]) -> Cmdwhere
K: ToRedisArgs,
G: ToRedisArgs,
I: ToRedisArgs,
pub fn xack<'a, K, G, I>(key: K, group: G, ids: &'a [I]) -> Cmdwhere
K: ToRedisArgs,
G: ToRedisArgs,
I: ToRedisArgs,
Ack pending stream messages checked out by a consumer.
XACK <key> <group> <id> <id> ... <id>
pub fn xadd<'a, K, ID, F, V>(key: K, id: ID, items: &'a [(F, V)]) -> Cmdwhere
K: ToRedisArgs,
ID: ToRedisArgs,
F: ToRedisArgs,
V: ToRedisArgs,
pub fn xadd<'a, K, ID, F, V>(key: K, id: ID, items: &'a [(F, V)]) -> Cmdwhere
K: ToRedisArgs,
ID: ToRedisArgs,
F: ToRedisArgs,
V: ToRedisArgs,
Add a stream message by key
. Use *
as the id
for the current timestamp.
XADD key <ID or *> [field value] [field value] ...
pub fn xadd_map<'a, K, ID, BTM>(key: K, id: ID, map: BTM) -> Cmdwhere
K: ToRedisArgs,
ID: ToRedisArgs,
BTM: ToRedisArgs,
pub fn xadd_map<'a, K, ID, BTM>(key: K, id: ID, map: BTM) -> Cmdwhere
K: ToRedisArgs,
ID: ToRedisArgs,
BTM: ToRedisArgs,
BTreeMap variant for adding a stream message by key
.
Use *
as the id
for the current timestamp.
XADD key <ID or *> [rust BTreeMap] ...
pub fn xadd_options<'a, K, ID, I>(
key: K,
id: ID,
items: I,
options: &'a StreamAddOptions,
) -> Cmdwhere
K: ToRedisArgs,
ID: ToRedisArgs,
I: ToRedisArgs,
pub fn xadd_options<'a, K, ID, I>(
key: K,
id: ID,
items: I,
options: &'a StreamAddOptions,
) -> Cmdwhere
K: ToRedisArgs,
ID: ToRedisArgs,
I: ToRedisArgs,
Add a stream message with options.
Items can be any list type, e.g.
// static items
let items = &[("key", "val"), ("key2", "val2")];
// A map (Can be BTreeMap, HashMap, etc)
let mut map: BTreeMap<&str, &str> = BTreeMap::new();
map.insert("ab", "cd");
map.insert("ef", "gh");
map.insert("ij", "kl");
XADD key [NOMKSTREAM] [<MAXLEN|MINID> [~|=] threshold [LIMIT count]] <* | ID> field value [field value] ...
pub fn xadd_maxlen<'a, K, ID, F, V>(
key: K,
maxlen: StreamMaxlen,
id: ID,
items: &'a [(F, V)],
) -> Cmdwhere
K: ToRedisArgs,
ID: ToRedisArgs,
F: ToRedisArgs,
V: ToRedisArgs,
pub fn xadd_maxlen<'a, K, ID, F, V>(
key: K,
maxlen: StreamMaxlen,
id: ID,
items: &'a [(F, V)],
) -> Cmdwhere
K: ToRedisArgs,
ID: ToRedisArgs,
F: ToRedisArgs,
V: ToRedisArgs,
Add a stream message while capping the stream at a maxlength.
XADD key [MAXLEN [~|=] <count>] <ID or *> [field value] [field value] ...
pub fn xadd_maxlen_map<'a, K, ID, BTM>(
key: K,
maxlen: StreamMaxlen,
id: ID,
map: BTM,
) -> Cmdwhere
K: ToRedisArgs,
ID: ToRedisArgs,
BTM: ToRedisArgs,
pub fn xadd_maxlen_map<'a, K, ID, BTM>(
key: K,
maxlen: StreamMaxlen,
id: ID,
map: BTM,
) -> Cmdwhere
K: ToRedisArgs,
ID: ToRedisArgs,
BTM: ToRedisArgs,
BTreeMap variant for adding a stream message while capping the stream at a maxlength.
XADD key [MAXLEN [~|=] <count>] <ID or *> [rust BTreeMap] ...
pub fn xautoclaim_options<'a, K, G, C, MIT, S>(
key: K,
group: G,
consumer: C,
min_idle_time: MIT,
start: S,
options: StreamAutoClaimOptions,
) -> Cmdwhere
K: ToRedisArgs,
G: ToRedisArgs,
C: ToRedisArgs,
MIT: ToRedisArgs,
S: ToRedisArgs,
pub fn xautoclaim_options<'a, K, G, C, MIT, S>(
key: K,
group: G,
consumer: C,
min_idle_time: MIT,
start: S,
options: StreamAutoClaimOptions,
) -> Cmdwhere
K: ToRedisArgs,
G: ToRedisArgs,
C: ToRedisArgs,
MIT: ToRedisArgs,
S: ToRedisArgs,
Perform a combined xpending and xclaim flow.
use redis::{Connection,Commands,RedisResult};
use redis::streams::{StreamAutoClaimOptions, StreamAutoClaimReply};
let client = redis::Client::open("redis://127.0.0.1/0").unwrap();
let mut con = client.get_connection().unwrap();
let opts = StreamAutoClaimOptions::default();
let results : RedisResult<StreamAutoClaimReply> = con.xautoclaim_options("k1", "g1", "c1", 10, "0-0", opts);
XAUTOCLAIM <key> <group> <consumer> <min-idle-time> <start> [COUNT <count>] [JUSTID]
pub fn xclaim<'a, K, G, C, MIT, ID>(
key: K,
group: G,
consumer: C,
min_idle_time: MIT,
ids: &'a [ID],
) -> Cmdwhere
K: ToRedisArgs,
G: ToRedisArgs,
C: ToRedisArgs,
MIT: ToRedisArgs,
ID: ToRedisArgs,
pub fn xclaim<'a, K, G, C, MIT, ID>(
key: K,
group: G,
consumer: C,
min_idle_time: MIT,
ids: &'a [ID],
) -> Cmdwhere
K: ToRedisArgs,
G: ToRedisArgs,
C: ToRedisArgs,
MIT: ToRedisArgs,
ID: ToRedisArgs,
Claim pending, unacked messages, after some period of time, currently checked out by another consumer.
This method only accepts the must-have arguments for claiming messages.
If optional arguments are required, see xclaim_options
below.
XCLAIM <key> <group> <consumer> <min-idle-time> [<ID-1> <ID-2>]
pub fn xclaim_options<'a, K, G, C, MIT, ID>(
key: K,
group: G,
consumer: C,
min_idle_time: MIT,
ids: &'a [ID],
options: StreamClaimOptions,
) -> Cmdwhere
K: ToRedisArgs,
G: ToRedisArgs,
C: ToRedisArgs,
MIT: ToRedisArgs,
ID: ToRedisArgs,
pub fn xclaim_options<'a, K, G, C, MIT, ID>(
key: K,
group: G,
consumer: C,
min_idle_time: MIT,
ids: &'a [ID],
options: StreamClaimOptions,
) -> Cmdwhere
K: ToRedisArgs,
G: ToRedisArgs,
C: ToRedisArgs,
MIT: ToRedisArgs,
ID: ToRedisArgs,
This is the optional arguments version for claiming unacked, pending messages currently checked out by another consumer.
use redis::{Connection,Commands,RedisResult};
use redis::streams::{StreamClaimOptions,StreamClaimReply};
let client = redis::Client::open("redis://127.0.0.1/0").unwrap();
let mut con = client.get_connection().unwrap();
// Claim all pending messages for key "k1",
// from group "g1", checked out by consumer "c1"
// for 10ms with RETRYCOUNT 2 and FORCE
let opts = StreamClaimOptions::default()
.with_force()
.retry(2);
let results: RedisResult<StreamClaimReply> =
con.xclaim_options("k1", "g1", "c1", 10, &["0"], opts);
// All optional arguments return a `Result<StreamClaimReply>` with one exception:
// Passing JUSTID returns only the message `id` and omits the HashMap for each message.
let opts = StreamClaimOptions::default()
.with_justid();
let results: RedisResult<Vec<String>> =
con.xclaim_options("k1", "g1", "c1", 10, &["0"], opts);
XCLAIM <key> <group> <consumer> <min-idle-time> <ID-1> <ID-2>
[IDLE <milliseconds>] [TIME <mstime>] [RETRYCOUNT <count>]
[FORCE] [JUSTID] [LASTID <lastid>]
pub fn xdel<'a, K, ID>(key: K, ids: &'a [ID]) -> Cmdwhere
K: ToRedisArgs,
ID: ToRedisArgs,
pub fn xdel<'a, K, ID>(key: K, ids: &'a [ID]) -> Cmdwhere
K: ToRedisArgs,
ID: ToRedisArgs,
Deletes a list of id
s for a given stream key
.
XDEL <key> [<ID1> <ID2> ... <IDN>]
pub fn xgroup_create<'a, K, G, ID>(key: K, group: G, id: ID) -> Cmdwhere
K: ToRedisArgs,
G: ToRedisArgs,
ID: ToRedisArgs,
pub fn xgroup_create<'a, K, G, ID>(key: K, group: G, id: ID) -> Cmdwhere
K: ToRedisArgs,
G: ToRedisArgs,
ID: ToRedisArgs,
This command is used for creating a consumer group
. It expects the stream key
to already exist. Otherwise, use xgroup_create_mkstream
if it doesn’t.
The id
is the starting message id all consumers should read from. Use $
If you want
all consumers to read from the last message added to stream.
XGROUP CREATE <key> <groupname> <id or $>
pub fn xgroup_createconsumer<'a, K, G, C>(key: K, group: G, consumer: C) -> Cmdwhere
K: ToRedisArgs,
G: ToRedisArgs,
C: ToRedisArgs,
pub fn xgroup_createconsumer<'a, K, G, C>(key: K, group: G, consumer: C) -> Cmdwhere
K: ToRedisArgs,
G: ToRedisArgs,
C: ToRedisArgs,
This creates a consumer
explicitly (vs implicit via XREADGROUP)
for given stream `key.
The return value is either a 0 or a 1 for the number of consumers created 0 means the consumer already exists
XGROUP CREATECONSUMER <key> <groupname> <consumername>
pub fn xgroup_create_mkstream<'a, K, G, ID>(key: K, group: G, id: ID) -> Cmdwhere
K: ToRedisArgs,
G: ToRedisArgs,
ID: ToRedisArgs,
pub fn xgroup_create_mkstream<'a, K, G, ID>(key: K, group: G, id: ID) -> Cmdwhere
K: ToRedisArgs,
G: ToRedisArgs,
ID: ToRedisArgs,
This is the alternate version for creating a consumer group
which makes the stream if it doesn’t exist.
XGROUP CREATE <key> <groupname> <id or $> [MKSTREAM]
pub fn xgroup_setid<'a, K, G, ID>(key: K, group: G, id: ID) -> Cmdwhere
K: ToRedisArgs,
G: ToRedisArgs,
ID: ToRedisArgs,
pub fn xgroup_setid<'a, K, G, ID>(key: K, group: G, id: ID) -> Cmdwhere
K: ToRedisArgs,
G: ToRedisArgs,
ID: ToRedisArgs,
Alter which id
you want consumers to begin reading from an existing
consumer group
.
XGROUP SETID <key> <groupname> <id or $>
pub fn xgroup_destroy<'a, K, G>(key: K, group: G) -> Cmdwhere
K: ToRedisArgs,
G: ToRedisArgs,
pub fn xgroup_destroy<'a, K, G>(key: K, group: G) -> Cmdwhere
K: ToRedisArgs,
G: ToRedisArgs,
Destroy an existing consumer group
for a given stream key
XGROUP SETID <key> <groupname> <id or $>
pub fn xgroup_delconsumer<'a, K, G, C>(key: K, group: G, consumer: C) -> Cmdwhere
K: ToRedisArgs,
G: ToRedisArgs,
C: ToRedisArgs,
pub fn xgroup_delconsumer<'a, K, G, C>(key: K, group: G, consumer: C) -> Cmdwhere
K: ToRedisArgs,
G: ToRedisArgs,
C: ToRedisArgs,
This deletes a consumer
from an existing consumer group
for given stream `key.
XGROUP DELCONSUMER <key> <groupname> <consumername>
pub fn xinfo_consumers<'a, K, G>(key: K, group: G) -> Cmdwhere
K: ToRedisArgs,
G: ToRedisArgs,
pub fn xinfo_consumers<'a, K, G>(key: K, group: G) -> Cmdwhere
K: ToRedisArgs,
G: ToRedisArgs,
This returns all info details about
which consumers have read messages for given consumer group
.
Take note of the StreamInfoConsumersReply return type.
It’s possible this return value might not contain new fields added by Redis in future versions.
XINFO CONSUMERS <key> <group>
pub fn xinfo_groups<'a, K>(key: K) -> Cmdwhere
K: ToRedisArgs,
pub fn xinfo_groups<'a, K>(key: K) -> Cmdwhere
K: ToRedisArgs,
Returns all consumer group
s created for a given stream key
.
Take note of the StreamInfoGroupsReply return type.
It’s possible this return value might not contain new fields added by Redis in future versions.
XINFO GROUPS <key>
pub fn xinfo_stream<'a, K>(key: K) -> Cmdwhere
K: ToRedisArgs,
pub fn xinfo_stream<'a, K>(key: K) -> Cmdwhere
K: ToRedisArgs,
Returns info about high-level stream details
(first & last message id
, length, number of groups, etc.)
Take note of the StreamInfoStreamReply return type.
It’s possible this return value might not contain new fields added by Redis in future versions.
XINFO STREAM <key>
pub fn xlen<'a, K>(key: K) -> Cmdwhere
K: ToRedisArgs,
pub fn xlen<'a, K>(key: K) -> Cmdwhere
K: ToRedisArgs,
Returns the number of messages for a given stream key
.
XLEN <key>
pub fn xpending<'a, K, G>(key: K, group: G) -> Cmdwhere
K: ToRedisArgs,
G: ToRedisArgs,
pub fn xpending<'a, K, G>(key: K, group: G) -> Cmdwhere
K: ToRedisArgs,
G: ToRedisArgs,
This is a basic version of making XPENDING command calls which only
passes a stream key
and consumer group
and it
returns details about which consumers have pending messages
that haven’t been acked.
You can use this method along with
xclaim
or xclaim_options
for determining which messages
need to be retried.
Take note of the StreamPendingReply return type.
XPENDING <key> <group> [<start> <stop> <count> [<consumer>]]
pub fn xpending_count<'a, K, G, S, E, C>(
key: K,
group: G,
start: S,
end: E,
count: C,
) -> Cmdwhere
K: ToRedisArgs,
G: ToRedisArgs,
S: ToRedisArgs,
E: ToRedisArgs,
C: ToRedisArgs,
pub fn xpending_count<'a, K, G, S, E, C>(
key: K,
group: G,
start: S,
end: E,
count: C,
) -> Cmdwhere
K: ToRedisArgs,
G: ToRedisArgs,
S: ToRedisArgs,
E: ToRedisArgs,
C: ToRedisArgs,
This XPENDING version returns a list of all messages over the range. You can use this for paginating pending messages (but without the message HashMap).
Start and end follow the same rules xrange
args. Set start to -
and end to +
for the entire stream.
Take note of the StreamPendingCountReply return type.
XPENDING <key> <group> <start> <stop> <count>
pub fn xpending_consumer_count<'a, K, G, S, E, C, CN>(
key: K,
group: G,
start: S,
end: E,
count: C,
consumer: CN,
) -> Cmdwhere
K: ToRedisArgs,
G: ToRedisArgs,
S: ToRedisArgs,
E: ToRedisArgs,
C: ToRedisArgs,
CN: ToRedisArgs,
pub fn xpending_consumer_count<'a, K, G, S, E, C, CN>(
key: K,
group: G,
start: S,
end: E,
count: C,
consumer: CN,
) -> Cmdwhere
K: ToRedisArgs,
G: ToRedisArgs,
S: ToRedisArgs,
E: ToRedisArgs,
C: ToRedisArgs,
CN: ToRedisArgs,
An alternate version of xpending_count
which filters by consumer
name.
Start and end follow the same rules xrange
args. Set start to -
and end to +
for the entire stream.
Take note of the StreamPendingCountReply return type.
XPENDING <key> <group> <start> <stop> <count> <consumer>
pub fn xrange<'a, K, S, E>(key: K, start: S, end: E) -> Cmdwhere
K: ToRedisArgs,
S: ToRedisArgs,
E: ToRedisArgs,
pub fn xrange<'a, K, S, E>(key: K, start: S, end: E) -> Cmdwhere
K: ToRedisArgs,
S: ToRedisArgs,
E: ToRedisArgs,
Returns a range of messages in a given stream key
.
Set start
to -
to begin at the first message.
Set end
to +
to end the most recent message.
You can pass message id
to both start
and end
.
Take note of the StreamRangeReply return type.
XRANGE key start end
pub fn xrange_all<'a, K>(key: K) -> Cmdwhere
K: ToRedisArgs,
pub fn xrange_all<'a, K>(key: K) -> Cmdwhere
K: ToRedisArgs,
A helper method for automatically returning all messages in a stream by key
.
Use with caution!
XRANGE key - +
pub fn xrange_count<'a, K, S, E, C>(key: K, start: S, end: E, count: C) -> Cmdwhere
K: ToRedisArgs,
S: ToRedisArgs,
E: ToRedisArgs,
C: ToRedisArgs,
pub fn xrange_count<'a, K, S, E, C>(key: K, start: S, end: E, count: C) -> Cmdwhere
K: ToRedisArgs,
S: ToRedisArgs,
E: ToRedisArgs,
C: ToRedisArgs,
A method for paginating a stream by key
.
XRANGE key start end [COUNT <n>]
pub fn xread<'a, K, ID>(keys: &'a [K], ids: &'a [ID]) -> Cmdwhere
K: ToRedisArgs,
ID: ToRedisArgs,
pub fn xread<'a, K, ID>(keys: &'a [K], ids: &'a [ID]) -> Cmdwhere
K: ToRedisArgs,
ID: ToRedisArgs,
Read a list of id
s for each stream key
.
This is the basic form of reading streams.
For more advanced control, like blocking, limiting, or reading by consumer group
,
see xread_options
.
XREAD STREAMS key_1 key_2 ... key_N ID_1 ID_2 ... ID_N
pub fn xread_options<'a, K, ID>(
keys: &'a [K],
ids: &'a [ID],
options: &'a StreamReadOptions,
) -> Cmdwhere
K: ToRedisArgs,
ID: ToRedisArgs,
pub fn xread_options<'a, K, ID>(
keys: &'a [K],
ids: &'a [ID],
options: &'a StreamReadOptions,
) -> Cmdwhere
K: ToRedisArgs,
ID: ToRedisArgs,
This method handles setting optional arguments for
XREAD
or XREADGROUP
Redis commands.
use redis::{Connection,RedisResult,Commands};
use redis::streams::{StreamReadOptions,StreamReadReply};
let client = redis::Client::open("redis://127.0.0.1/0").unwrap();
let mut con = client.get_connection().unwrap();
// Read 10 messages from the start of the stream,
// without registering as a consumer group.
let opts = StreamReadOptions::default()
.count(10);
let results: RedisResult<StreamReadReply> =
con.xread_options(&["k1"], &["0"], &opts);
// Read all undelivered messages for a given
// consumer group. Be advised: the consumer group must already
// exist before making this call. Also note: we're passing
// '>' as the id here, which means all undelivered messages.
let opts = StreamReadOptions::default()
.group("group-1", "consumer-1");
let results: RedisResult<StreamReadReply> =
con.xread_options(&["k1"], &[">"], &opts);
XREAD [BLOCK <milliseconds>] [COUNT <count>]
STREAMS key_1 key_2 ... key_N
ID_1 ID_2 ... ID_N
XREADGROUP [GROUP group-name consumer-name] [BLOCK <milliseconds>] [COUNT <count>] [NOACK]
STREAMS key_1 key_2 ... key_N
ID_1 ID_2 ... ID_N
pub fn xrevrange<'a, K, E, S>(key: K, end: E, start: S) -> Cmdwhere
K: ToRedisArgs,
E: ToRedisArgs,
S: ToRedisArgs,
pub fn xrevrange<'a, K, E, S>(key: K, end: E, start: S) -> Cmdwhere
K: ToRedisArgs,
E: ToRedisArgs,
S: ToRedisArgs,
This is the reverse version of xrange
.
The same rules apply for start
and end
here.
XREVRANGE key end start
pub fn xrevrange_all<'a, K>(key: K) -> Cmdwhere
K: ToRedisArgs,
pub fn xrevrange_all<'a, K>(key: K) -> Cmdwhere
K: ToRedisArgs,
This is the reverse version of xrange_all
.
The same rules apply for start
and end
here.
XREVRANGE key + -
pub fn xrevrange_count<'a, K, E, S, C>(
key: K,
end: E,
start: S,
count: C,
) -> Cmdwhere
K: ToRedisArgs,
E: ToRedisArgs,
S: ToRedisArgs,
C: ToRedisArgs,
pub fn xrevrange_count<'a, K, E, S, C>(
key: K,
end: E,
start: S,
count: C,
) -> Cmdwhere
K: ToRedisArgs,
E: ToRedisArgs,
S: ToRedisArgs,
C: ToRedisArgs,
This is the reverse version of xrange_count
.
The same rules apply for start
and end
here.
XREVRANGE key end start [COUNT <n>]
pub fn xtrim<'a, K>(key: K, maxlen: StreamMaxlen) -> Cmdwhere
K: ToRedisArgs,
pub fn xtrim<'a, K>(key: K, maxlen: StreamMaxlen) -> Cmdwhere
K: ToRedisArgs,
Trim a stream key
to a MAXLEN count.
XTRIM <key> MAXLEN [~|=] <count> (Same as XADD MAXLEN option)
pub fn xtrim_options<'a, K>(key: K, options: &'a StreamTrimOptions) -> Cmdwhere
K: ToRedisArgs,
pub fn xtrim_options<'a, K>(key: K, options: &'a StreamTrimOptions) -> Cmdwhere
K: ToRedisArgs,
Trim a stream key
with full options
XTRIM <key> <MAXLEN|MINID> [~|=] <threshold> [LIMIT <count>] (Same as XADD MAXID|MINID options)
pub fn invoke_script<'a>(invocation: &'a ScriptInvocation<'a>) -> Cmd
pub fn invoke_script<'a>(invocation: &'a ScriptInvocation<'a>) -> Cmd
Adds a prepared script command to the pipeline.
§Examples:
let script = redis::Script::new(r"
return tonumber(ARGV[1]) + tonumber(ARGV[2]);
");
let (a, b): (isize, isize) = redis::pipe()
.invoke_script(script.arg(1).arg(2))
.invoke_script(script.arg(2).arg(3))
.query(&mut con)?;
assert_eq!(a, 3);
assert_eq!(b, 5);
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Cmd
impl RefUnwindSafe for Cmd
impl Send for Cmd
impl Sync for Cmd
impl Unpin for Cmd
impl UnwindSafe for Cmd
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more