node.js 有 redis 客户端。找到一个实现完整协议的协议,包括subscribe
.
订阅(或模式的 psubscribe)使用 akey
来指定连接通道。因此,例如(使用https://github.com/mranney/node_redis)
connection.on("message", function (channel, message) {
if (channel == "myInterestingChannel") {
console.log(message);
} else if (channel == "anotherChannel") {
console.warn(message);
}
}
connection.subscribe("myInterestingChannel");
connection.subscribe("anotherChannel");
然后,当您希望您的 node.js 代码了解这些渠道之一中的某些内容时,只需发布一条消息。例如在 python 的 redis 客户端中:
connection.publish("myInterestingChannel", "poop goes in the potty");
在您的问题中,您问“此外,Redis 是否可以在收到特定密钥时自动发布新条目?”
如果您将它们发布到正在订阅的频道上,则可以。但是,当您执行类似的操作时,它不能自动发布
connection.set("myInterestingChannel", "some other message")
相反,如果您想存储它并让您的节点应用程序知道,您可以最轻松地执行以下操作:
msg = "some other message"
connection.set("some key", msg)
connection.publish("myInterestingChannel", msg)