Scripts
EVALSHA
Evaluate a cached Lua script server side.
EVALSHA
is like EVAL
but instead of sending the script over the wire every time, you reference the script by its SHA1 hash. This is useful for caching scripts on the server side.
Arguments
sha
string
requiredThe sha1 hash of the script.
keys
string[]
requiredAll of the keys accessed in the script
args
unknown[]
requiredAll of the arguments you passed to the script
Response
The result of the script.
Was this page helpful?