memcache icon indicating copy to clipboard operation
memcache copied to clipboard

Node.js memcached client with the most efficient ASCII protocol parser

Results 9 memcache issues
Sort by recently updated
recently updated
newest added

Hey, been using `memcache-client` since September in our [open-source project](https://github.com/search?q=repo%3Awieldprotocol%2Funiverse+memcached&type=code), mostly everything has been great so thank you! I've encountered an unusual error that has occurred ~50 times on our...

Memcached has some new 'meta commands' that extend the text protocol, but do not appear to be supported in memcached-client (and presumably not in the njs server either. I'm not...

I noticed a few memcache-client test cases fail when I run `npm test` locally. I don't think this is a functional bug as the client works fine. This is most...

Setting the lifetime in the connection settings as so: ` this.memcacheClient = new memcacheClient({ server: { server: connectStr, maxConnections: 150 }, lifetime: 0 }) ` or ` this.memcacheClient.set(key, digest, {...

Please add ITEM response support after invoking command 'stats cachedump' at lease one line of code ` ITEM: ACTION_RESULT,` to line 20 (for example) to memcache-client/lib/cmd-actions.js will fix a problem...

The memcache-client will accept keys that would cause the send to fail, you wont see this with the value as the data is packed. According to the ASCII protocol keys...

Fixes #26 ## Problem In some cases, bad commands (e.g. invalid keys) sent in parallel at a high throughput to a memcache server will result in the error described in...