node_redis_cluster
node_redis_cluster copied to clipboard
A thin wrapper over node_redis to make it work with Redis Cluster
In the function connectToLink the link that has to be parsed is in the form :@ When the client (fastRedis or normal client) is created the string @ is used...
Hi Joao, first, congratulations with the cluster lib, everything for my app is working after refactor, but i notice the version of the redis inside node_redis_cluster is too old 0.8.x...
Object everything works fine my code, gets to this line of code: ``` var multi = r.multi(); ``` Object multi gets undefined. Do you have an idea maybe? I should...
Hi. We have had a problem where, when we try and quit the connection by client.quit() the tcp connection to redis server is not actually quit/killed/ended. it still remains and...
I'm trying to use hmset: ``` redisConnection.hmset(personId, { tagId: req.params.tagId, personHash: req.params.personHash }, function(err, reply) { if (err) { throw err; } assert(reply, 'OK'); }); ``` And got error: /app/node_modules/redis-cluster/node_modules/redis/index.js:563...
Has anyone experienced a lot of slow down in basic Redis operations when using this implementation? I'm talking about 10 seconds or more when just using the example in the...
Add an actual Client object instead of just using an EventEmitter. Added two functions, getSlot and getNode to the client which is useful for sending commands that take multiple keys...
Referring to the redisLinks property that is exposed through module.exports https://github.com/joaojeronimo/node_redis_cluster/blob/master/index.js#L317 In a project where there are multiple redis clusters being used, the redisLinks property will point to the nodes...
.editorconfig that enforces 2-space indentation and a final newline at the end of the file.