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

shabodystrrequired

The sha1 hash of the script.

keysbodyList[str]required

All of the keys accessed in the script

argsbodyList[str]required

All of the arguments you passed to the script

Response

?required

The result of the script.

Example
result = redis.evalsha("fb67a0c03b48ddbf8b4c9b011e779563bdbc28cb", args=["hello"])assert result = "hello"
Loading search…