堆栈: 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订阅数量。
答案 0 :(得分:2)
这样做。
client.pubsub('NUMSUB', 'news', function(err,result){
console.log(err)
console.log(result)
})