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

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

Results 9 lua-resty-memcached issues
Sort by recently updated
recently updated
newest added

Hi, I have noticed that this library uses [string.match](https://github.com/openresty/lua-resty-memcached/blob/d4b0186d5e2f65e38c3c63408d462d98c8dc5977/lib/resty/memcached.lua#L6) function which is not supported by LuaJIT: http://wiki.luajit.org/NYI#libraries_string-library Will this library play nice with LuaJIT or there are other obstacles which...

Hello, dear @agentzh I add support of consistent hash using resty/chash. We have been using this in production for months. I have no confidence you will merge this but still...

Hi All, I had build the nginx binary on rhel 7.6 ppc64le (version 1.17.1.1rc0) from source code - https://github.com/openresty/openresty. Please note that, I had copied and used ppc64le compiled LuaJIT...

I am using memcache on ALIYUN which is a cloud memcache service. but unfortunately,this project seems not support "SASL Authentication Protocol". can you add this feature to this project or...

I am trying to read memcached values that are protocol buffers, however I always get a nil result with no error. If I set a key with a test string...

Hey... i am trying this binding for connect a couchbase cluster... how i can specify a custom bucket instead "default bucket" ? Salutes

Hi, I have the following code executed on each request: ``` access_by_lua_block { local memcached = require "resty.memcached" local memc = memcached:new() memc:set_timeout(3000) -- 3 sec local ok = memc:connect("127.0.0.1",...

I was not able to find a way through which I could get all the keys from all the {key,value} pairs stored in memcache.