在node.js中使用redis“pubsub”命令

时间:2016-10-19 16:12:16

标签: node.js redis

堆栈: Nodes.js:v4.5.0, Redis:3.2.100, Node-redis:2.6.2(http://redis.js.org

我试图使用“pubsub”命令查找频道的订阅数量。 http://redis.io/commands/pubsub

Error while compiling statement: FAILED: ParseException line 1:12 missing KW_ROLE at 'hivevar' near 'hivevar' line 1:19 missing EOF at ':' near 'hivevar'.

找不到node-redis API中的“pubsub”命令。 请帮我在node.js环境中获取频道的redis订阅数量。

1 个答案:

答案 0 :(得分:2)

这样做。

  client.pubsub('NUMSUB', 'news', function(err,result){
    console.log(err)
    console.log(result)
  })