Redis脚本使用Lua解释器用于计算脚本。它Redis从2.6.0版本开始内置。使用脚本eval命令。
语法
eval命令的基本语法如下:
redis 127.0.0.1:6379> EVAL script numkeys key [key …] arg [arg …]
例子
以下举例说明Redis脚本的工作原理:
redis 127.0.0.1:6379> EVAL “return {KEYS[1],KEYS[2],ARGV[1],ARGV[2]}” 2 key1 key2 first second 1) “key1″ 2) “key2″ 3) “first” 4) “second”
Redis脚本命令
如下表所示相关Redis脚本的一些基本命令:
S.N. | 命令和说明 |
---|---|
1 | EVAL script numkeys key [key …] arg [arg …] 执行一个Lua脚本。 |
2 | EVALSHA sha1 numkeys key [key …] arg [arg …] 执行一个Lua脚本。 |
3 | SCRIPT EXISTS script [script …] 检查脚本是否存在于缓存中。 |
4 | SCRIPT FLUSH 删除脚本缓存中的所有脚本。 |
5 | SCRIPT KILL 终止目前在执行的脚本。 |
6 | SCRIPT LOAD script 加载指定的Lua脚本到脚本缓存。 |
PS:如果您想和业内技术大牛交流的话,请加qq群(521249302)或者关注微信公众 号(AskHarries),谢谢!