lua-resty-redis
lua-resty-redis copied to clipboard
Lua redis client driver for the ngx_lua based on the cosocket API
Redis connection is normal. There is a key in Redis. Redis: get (key) returns false
Hi! Does this module somehow offer the possibility to use the [CLIENT SETNAME](https://redis.io/commands/client-setname/) command? Thanks!
When using a pipeline combined with a coroutine, some commands might get mixed into the pipeline. Please consider introducing pipeline objects, e.g.: ```lua local pipe = red:start_pipeline() pipe:set(...) -- ......
in my kong lua scripts, I write some code in access function like this: local redis = require "resty.redis" local red = redis:new() red:set_timeouts(5000, 5000, 5000) local ok, err =...
Redis **server** logs the line from the title after each request. It is a **debug** log level and everything seems to work fine but I think there might still be...
We are using this modules with nginx 1.16 , its working perfectly fine. Recently we are planning to upgrade the nginx to 1.24 or 1.25.1 version. Its failing there System...
Whether the redis client will block the nginx event loop in implementation, or the read timeout is caused by lua's own coroutine scheduling, because I found that the redis server...