memcached
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.
Unless I'm missing something here, timestamps don't seem to work. ```js const Memcached = require('memcached'); const memcached = new Memcached(); function nowInSeconds() { return Math.floor(Date.now() / 1000); } memcached.set('xxx', 'yyy',...
As https://github.com/3rd-Eden/memcached/blob/83a6752842665cf14b7cccf37de85b02fc07f5d5/TODO mentioned, compression is a feature in TODO. but it seems no progress until now, what happened?
Memcache not connecting to IP which is provided to connection string like below: ``` var Memcached = require('memcached'); var memcached = new Memcached(); memcached.connect( '12.34.567.890:11211', function( err, conn ){ if(...
We have noticed that the memcached.set callback is getting called with an `err` and an `ok`. That was an unexpected behavior based on the normal javascript standards. Also the README.md...
Hi, I am stored data into memcache using PHP like: $data=array(" some data"); $memcache->set("key",$data); When try to fetch data using node js like: var Memcached = require('memcached'); var memcache =...
I was experimenting with connection retries by using the options specified in the readme, but they were not behaving how I expected. After taking a look at the code, I...
SASL Support
Just wondering if there were any plans on supporting SASL authentication. The use case for this is heroku's memcache deployment requires SASL to work. Thanks for your time.
I'm planning to implement an URL caching scenario, where memcached holds rendered html for each given URL. My problem is with querystring catalog URLs, I'd like to clear keys for...
implement a caching system for my application js node, when I apply a small workload of 100 latency users remaining. But as the workload increases and my life has increased...
Fix for a scenario where the memcache JSON data was stored in a improper format resulting in an error shown as below which invokes an uncaught exception. This can be...