Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Retrieving various hashes from Redis in Node.js

Tags:

node.js

redis

How could one retrieve various hashes from Redis in Node.js through node-redis? The best way of retrieving various hashes seems to be pipelines but I have not found how to use them in Node.

like image 360
brandizzi Avatar asked Dec 20 '11 16:12

brandizzi


1 Answers

You can achieve that using the multi command to queue the hash retrieval commands:

var redis  = require("redis"),
    client = redis.createClient(),
    multi_queue;

multi_queue = client.multi();
...
for (key in keys) {
  multi_queue.hgetall(key);
}

multi_queue.exec(function (err, replies) {
  console.log("MULTI got " + replies.length + " replies");
  replies.forEach(function (reply, index) {
    console.log("Reply " + index + ": " + reply.toString());
  });
});
like image 84
alessioalex Avatar answered Oct 21 '22 05:10

alessioalex