evalsha(
sha: str, // SHA1 digest of the script
numkeys: int, // Number of keys in the script
*keys_and_args: Union[KeyT, EncodableT] // Keys and arguments for the script
) → Union[Awaitable[str], str] // Script execution result
evalSha(
sha1: RedisArgument, // SHA1 digest of the script
options: EvalOptions // Script execution options including keys and arguments
) → Promise<ReplyUnion> // Script execution result
evalsha(
sha1: String, // SHA1 digest of the script
keyCount: int, // Number of keys in the script
params: String... // Keys and arguments for the script
) → Object // Script execution result
evalsha(
sha1: String, // SHA1 digest of the script
keys: List<String>, // Keys for the script
args: List<String> // Arguments for the script
) → Object // Script execution result
evalsha(
digest: String, // SHA1 of the script
type: ScriptOutputType, // Output type
keys: K... // The keys
) → <T> T // Script result
evalsha(
digest: String, // SHA1 of the script
type: ScriptOutputType, // Output type
keys: K[], // The keys
values: V... // The values
) → <T> T // Script result
evalsha(
digest: String, // SHA1 of the script
type: ScriptOutputType, // The type
keys: K... // The keys
) → <T> RedisFuture<T> // Script result
evalsha(
digest: String, // SHA1 of the script
type: ScriptOutputType, // The type
keys: K[], // The keys
values: V... // The values
) → <T> RedisFuture<T> // Script result
evalsha(
digest: String, // SHA1 of the script
type: ScriptOutputType, // The type
keys: K... // The keys
) → <T> Flux<T> // Script result
evalsha(
digest: String, // SHA1 of the script
type: ScriptOutputType, // The type
keys: K[], // The keys
values: V... // The values
) → <T> Flux<T> // Script result
EvalSha(
ctx: context.Context, // Context for the operation
sha1: string, // SHA1 digest of the script
keys: []string, // Keys for the script
args: ...interface{} // Arguments for the script
) → *Cmd // Script execution result
ScriptEvaluate(
hash: byte[], // SHA1 hash of the script
keys: RedisKey[]?, // Keys for the script
values: RedisValue[]?, // Arguments for the script
flags: CommandFlags // Command flags
) → RedisResult // Script execution result
ScriptEvaluateAsync(
hash: byte[], // SHA1 hash of the script
keys: RedisKey[]?, // Keys for the script
values: RedisValue[]?, // Arguments for the script
flags: CommandFlags // Command flags
) → Task<RedisResult> // Script execution result
evalsha(
$script: string, // SHA1 digest of the script
$numkeys: int, // Number of keys in the script
$keyOrArg: string... // Keys and arguments for the script
) → mixed // Script execution result
No method signature available for this client.
No method signature available for this client.