phpredis执行LUA脚本示例代码
前言
本文主要给大家介绍了关于phpredis执行LUA脚本的相关内容,分享出来供大家参考学习,下面话不多说了,来一起看看详细的介绍吧
示例代码
$lua = <<<EOT local kws = {} local lrkws = {} local nkws = {} local kw_ids = {} local lr_ids = {} local n_ids = {} for kw in string.gmatch(KEYS[1], "[^|]+") do table.insert(kws, "kw:"..kw) end for kw in string.gmatch(KEYS[2], "[^|]+") do table.insert(lrkws, "lrkw:"..kw) end for kw in string.gmatch(KEYS[3], "[^|]+") do table.insert(nkws, "nkw:"..kw) end if #kws > 0 then kw_ids = redis.call('sinter', unpack(kws)) end if #lrkws > 0 then lr_ids = redis.call('sinter', unpack(lrkws)) end if #nkws > 0 then n_ids = redis.call('sinter', unpack(nkws)) end local cache_key = ARGV[1] for _, v in ipairs(kw_ids) do redis.call('sadd', cache_key, v) end for _, v in ipairs(lr_ids) do redis.call('sadd', cache_key, v) end for _, v in ipairs(n_ids) do redis.call('sadd', cache_key, v) end redis.call('expire', cache_key, 600) return redis.call('scard', cache_key) EOT; $ret = $redis->eval($lua, array("你好|谢谢", "", "hello", "cache_key"), 3); echo $ret;
例子中传入3个KEYS参数,1个ARGV参数。 KEYS参数是字符串,单词之间用 | 分割。
lua脚本最后将查询结果存入 ARGV参数指定的key中,并返回结果set的成员个数。
需要注意的是, eval函数的第3个参数为KEYS个数。 phpredis依据此值将KEYS和ARGV做区分。
参考网页: https://github.com/phpredis/phpredis/blob/develop/tests/RedisTest.php
总结
相关推荐
峰哥 2020-09-23
王道革 2020-11-25
wangdonghello 2020-11-03
Langeldep 2020-11-16
chenhualong0 2020-11-16
聚合室 2020-11-16
koushr 2020-11-12
MRFENGG 2020-11-11
guoyanga 2020-11-10
fackyou00 2020-11-10
Orangesss 2020-11-03
dongCSDN 2020-10-31
rainandtear 2020-10-30
Quietboy 2020-10-30
liuyulong 2020-10-29
fansili 2020-10-29
温攀峰 2020-10-23
jackbon 2020-10-19