1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
|
# Redis `scripting` commands (7/22 implemented)
## [EVAL](https://redis.io/commands/eval/)
Executes a server-side Lua script.
## [EVALSHA](https://redis.io/commands/evalsha/)
Executes a server-side Lua script by SHA1 digest.
## [SCRIPT](https://redis.io/commands/script/)
A container for Lua scripts management commands.
## [SCRIPT EXISTS](https://redis.io/commands/script-exists/)
Determines whether server-side Lua scripts exist in the script cache.
## [SCRIPT FLUSH](https://redis.io/commands/script-flush/)
Removes all server-side Lua scripts from the script cache.
## [SCRIPT HELP](https://redis.io/commands/script-help/)
Returns helpful text about the different subcommands.
## [SCRIPT LOAD](https://redis.io/commands/script-load/)
Loads a server-side Lua script to the script cache.
## Unsupported scripting commands
> To implement support for a command, see [here](/guides/implement-command/)
#### [EVAL_RO](https://redis.io/commands/eval_ro/) <small>(not implemented)</small>
Executes a read-only server-side Lua script.
#### [EVALSHA_RO](https://redis.io/commands/evalsha_ro/) <small>(not implemented)</small>
Executes a read-only server-side Lua script by SHA1 digest.
#### [FCALL](https://redis.io/commands/fcall/) <small>(not implemented)</small>
Invokes a function.
#### [FCALL_RO](https://redis.io/commands/fcall_ro/) <small>(not implemented)</small>
Invokes a read-only function.
#### [FUNCTION](https://redis.io/commands/function/) <small>(not implemented)</small>
A container for function commands.
#### [FUNCTION DELETE](https://redis.io/commands/function-delete/) <small>(not implemented)</small>
Deletes a library and its functions.
#### [FUNCTION DUMP](https://redis.io/commands/function-dump/) <small>(not implemented)</small>
Dumps all libraries into a serialized binary payload.
#### [FUNCTION FLUSH](https://redis.io/commands/function-flush/) <small>(not implemented)</small>
Deletes all libraries and functions.
#### [FUNCTION KILL](https://redis.io/commands/function-kill/) <small>(not implemented)</small>
Terminates a function during execution.
#### [FUNCTION LIST](https://redis.io/commands/function-list/) <small>(not implemented)</small>
Returns information about all libraries.
#### [FUNCTION LOAD](https://redis.io/commands/function-load/) <small>(not implemented)</small>
Creates a library.
#### [FUNCTION RESTORE](https://redis.io/commands/function-restore/) <small>(not implemented)</small>
Restores all libraries from a payload.
#### [FUNCTION STATS](https://redis.io/commands/function-stats/) <small>(not implemented)</small>
Returns information about a function during execution.
#### [SCRIPT DEBUG](https://redis.io/commands/script-debug/) <small>(not implemented)</small>
Sets the debug mode of server-side Lua scripts.
#### [SCRIPT KILL](https://redis.io/commands/script-kill/) <small>(not implemented)</small>
Terminates a server-side Lua script during execution.
|