我使用lua-script将密钥设置为redis:
local redis = require("redis")
local connected, client = pcall(redis.connect, '127.0.0.1', 6379)
client:set(key, value)
有时,当我执行: client:set(key,value)时,我收到错误:连接超时并且应用程序崩溃。
如何处理此错误问题?
答案 0 :(得分:0)
解决方案:
local status, result = pcall(function() client:set(key, value) end)