memcached icon indicating copy to clipboard operation
memcached copied to clipboard

A fully featured Memcached client build on top of Node.js. Build with scaling in mind so it will support Memcached clusters and consistent hashing.

Results 101 memcached issues
Sort by recently updated
recently updated
newest added

I'm working on Windows memcached Server's version: 1.4.4-14-g9c660c0 Node version: v0.10.32 Code Snippet: mem.set( "hello", 1, 70, function( err, result ){ if( err ) console.error( err ); console.dir( result );...

I am using memcached in [NUXT](https://nuxtjs.org/) Framework to build a isomorphic application. Though memcached is accessed in server side only. I am getting an error ``` These dependencies were not...

I found particularly hard to understand why linebreaks in values are escaped by node-memcached, since this prevents other (unaware) clients from effortlessly reading values encoded in such a way. A...

We ran into huge issues with timeout errors on aws with lambda/node specifically - once we used the end after the call it helped. That may be common sense to...

``` diff --git a/lib/memcached.js b/lib/memcached.js index 9742a1d..2e1a94b 100644 --- a/lib/memcached.js +++ b/lib/memcached.js @@ -523,7 +523,7 @@ Client.config = { dataSet = +dataSet; break; case FLAG_BINARY: - tmp = new Buffer(dataSet.length);...

I just filed two (trivial) PRs, and they fail on the travis checks. Looking at the failures though the problem isn't the code itself, it's that the Travis environment tries...

mocha 8.x removed support for mocha.opts, and had been announcing that through a deprecation warning before: ~~~~ (node:200058) DeprecationWarning: Configuration via mocha.opts is DEPRECATED and will be removed from a...

Fixes #195, and possibly #185 Currently if any memcache server goes down once a connection is made, Memcached requests will hang and not call their callbacks. This comment from the...

I honestly do not know from the docs if this is actually supported with the correct settings or not. But it would be nice to have. As of now we...