Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
script = """ local value = redis.call("GET", KEYS[1]) return value """ redis.set("mykey", "Hello") assert redis.eval_ro(script, keys=["mykey"]) == "Hello"
assert redis.eval_ro("return ARGV[1]", args=["Hello"]) == "Hello"
Evaluate a read-only Lua script server side.
Was this page helpful?