如何在then-redis中进行rpush操作?

时间:2014-06-27 05:51:26

标签: node.js redis node-redis

  1. 如何使用redis进行rpush操作并检索所有数据?
  2. 如何在then-redis中进行hlist操作?

2 个答案:

答案 0 :(得分:1)

rpush operation api目前无法通过then-redis提供。您可以在同一个程序中为command.js编写自己的代码。没有像hlist这样的操作,你可以根据你的要求再次编写对LRANGE或RRANGE的支持,并使用它来检索所有结果。

答案 1 :(得分:1)

问题1: 您可以使用multi command

 client.multi()
    .rpush("yourlist","value")
    .lrange("yourlist", 0,-1,function (err, replies) {
        // here get le list content from replies
    })
    .exec(function (err, replies) {
        //...
    });

Chhavi的问题2:当时没有由red-redis提供rpush operation api