我正在使用scripto在node.js中编写脚本,我正在尝试对数据库中的值进行nil检查: 这是js代码(用于节点) -
var redis = require("redis");
var redisClient = redis.createClient("6379","localhost");
var Scripto = require('redis-scripto');
var scriptManager = new Scripto(redisClient);
var scripts = {
'test':'local function test(i) '+
'if (i==nil) then return i end '+
'local ch = redis.call("get", i) '+
'if (ch==nil) then return ("ch is nil") '+
'else return "1" '+
'end end '+
'return (test(KEYS[1]))',
};
scriptManager.load(scripts);
scriptManager.run('test', ["someInvalidKey"], [], function(err,result){
console.log(err || result);
});
但我无法进入if声明中的“ch is nil” ...任何帮助?
答案 0 :(得分:14)
Lua片段:
redis.call("get", i)
Redis'GET
方法永远不会返回nil,但如果没有密钥则返回一个布尔值(false)。
将您的代码更改为:
local function test(i)
if (i==nil) then
return 'isnil ' .. i
end
local ch = redis.call("get", i)
if (ch==nil or (type(ch) == "boolean" and not ch)) then
return ("ch is nil or false")
else
return "isthere '" .. ch .. "'"
end
end
return (test(KEYS[1]))
甚至更简单(允许在不同类型之间进行Lua相等检查,总是返回false):
local function test(i)
if (i==nil) then
return 'isnil ' .. i
end
local ch = redis.call("get", i)
if (ch==false) then
return ("ch is false")
else
return "isthere '" .. ch .. "'"
end
end
return (test(KEYS[1]))
如果你多玩一点,你会发现你可以比它更简单,但你会明白这一点。
希望这有帮助,TW