redis and scripting | Mar 14, 2016
Kills the currently executing Lua script, assuming no write operation was yet performed by the script.
More »redis and scripting | Mar 14, 2016
Flush the Lua scripts cache.
More »redis and scripting | Mar 14, 2016
Returns information about the existence of the scripts in the script cache.
More »redis and scripting | Mar 14, 2016
Set the debug mode for subsequent scripts executed with EVAL
. Redis includes a
complete Lua debugger, codename LDB, that can be used to make the task of
writing complex scripts much simpler. In debug mode Redis acts as a remote
debugging server and a client, such as redis-cli
, can execute scripts step by
step, set breakpoints, inspect variables and more - for additional information
about LDB refer to the Redis Lua debugger page.
redis and scripting | Mar 14, 2016
Evaluates a script cached on the server side by its SHA1 digest.
Scripts are cached on the server side using the SCRIPT LOAD
command.
The command is otherwise identical to EVAL
.
redis and scripting | Mar 14, 2016