Trait redis_driver::ScriptingCommands
source · [−]pub trait ScriptingCommands: CommandSend {
fn eval<S, K, KK, A, AA>(
&self,
script: S,
keys: Option<KK>,
args: Option<AA>
) -> Future<'_, Value>
where
S: Into<BulkString>,
K: Into<BulkString>,
KK: SingleArgOrCollection<K>,
A: Into<BulkString>,
AA: SingleArgOrCollection<A>,
{ ... }
fn evalsha<S, K, KK, A, AA>(
&self,
sha1: S,
keys: Option<KK>,
args: Option<AA>
) -> Future<'_, Value>
where
S: Into<BulkString>,
K: Into<BulkString>,
KK: SingleArgOrCollection<K>,
A: Into<BulkString>,
AA: SingleArgOrCollection<A>,
{ ... }
fn script_load<S, V>(&self, script: S) -> Future<'_, V>
where
S: Into<BulkString>,
V: FromValue,
{ ... }
}
Expand description
A group of Redis commands related to Scripting and Functions
See Also
Redis Scripting and Functions Commands Scripting with LUA Functions