lua-resty-redis icon indicating copy to clipboard operation
lua-resty-redis copied to clipboard

Lua redis client driver for the ngx_lua based on the cosocket API

Results 87 lua-resty-redis issues
Sort by recently updated
recently updated
newest added
trafficstars

Redis cluster client. This is implementated as a wrapper over the existing resty-redis client adding cluster functionality. Basic functionality except pipelining is working. Working on pipelining support. - Each cluster...

Hello, I see that 2 PR are open for quite some time now to support dots redis modules ( like redisjson ), do you plan to merge one of them...

We recently had an issue with our Redis provider and this error came up which caused our application to throw 500s. I'm trying to understand what could've caused this and...

This pr provides the lua client for the redis cluster.

Hi There, After getting "timeout" error from hmget command, I'm failing to set_keepalive for the connection. When making set_keepalive after the hmget timeout I'm getting "closed" error. Why the connections...

local confRedis = { host = "127.0.0.1", port = "6379", password = "Lp8^w#H$r43@", timeout = 1000, max_idle_timeout = 1000*600, pool_size = 100 } function connectRedis() local rds, err = redis:new()...

How can I set a record in Redis by the expiration time?

Hi There, We are using the module for a long time and I think we have a mem leak or something regarding the connections. I would like to know the...

I'm trying to understand the lack of connection handling during the return conditions in the example given in the package synopsis. I've no prior experience with Lua so maybe there's...

Hello, this code I get from some blog explaining a simple chatroom code. Function `heros` is called when a websocket connects the openresty.All fine except regular `timeout` error happens about...