如何解决redis connect运行时错误?

时间:2017-07-31 04:57:37

标签: nginx lua redis openresty

我正在尝试从我的openresty nginx服务器上的nginx.conf文件中的lua脚本访问redis。以下是lua脚本,我使用content_by_lua_file指令来引用它。

local redis = require "resty.redis"
local red = redis:new()
local ok, err = red:connect("127.0.0.1", 6379)
if not ok then
    ngx.log(ngx.ERR, "Redis connection failure: " .. err)
    return
end

我遇到运行时错误...尝试调用方法'connect'(零值)

这里发生了什么? 感谢

0 个答案:

没有答案