redis运行lua脚本hmget返回值为空判断问题

1、redis中准备测试数据
hmset test abcd 123 ABCD 456
hgetall test


2、网上有人说用内置函数next()判断

redis-cli -c -p 8000 -n 8 --eval 1.lua test

redis-cli -c -p 8000 -n 8 --eval 1.lua test1

测试结果  返回的类型都为number,

local table_res=redis.call('hmget', KEYS[1], "abcd", "ABCD", "other")

return table_res  测试结果:



return next(table_res)  测试结果:



return type(next(table_res))  测试结果:



if next(table_res)==nil then
     return "table_res is null"
end
redis set中的key不存在时,返回table元素的值为空,table不为空。 所以if条件判断为假。


下面判断table元素中的值是否为空:
if table_res[1]==nil then
return "table first value is null"
end

说明直接判断不行

查看return type(table_res[1]) 类型


所以我们修改为

if table_res[1]==false then
        return "table first value is null"
else
        return "not null"
end



总结:第一次用redis里运行lua脚本,一路磕磕喷喷;网上查了很多资料都没有想过问题的解决方案,把它记录下来希望能给大家帮助,少碰坑。

你可能感兴趣的:(redis运行lua脚本hmget返回值为空判断问题)