使用 Juggernaut 可以订阅和发布通配符 Redis 事件吗?
同样,Redis 为通配符事件提供了 PSUBSCRIBE 接口,您可以使用 Juggernaut 从客户端(浏览器)订阅通配符吗?我正在寻找这样的东西:
从客户端:
var jug = new Juggernaut();
jug.subscribe('event:'+event.id+':*', function(res) {
console.log(res);
});
然后从服务器:
Juggernaut.publish("event:#{event.id}:foshiz", data)
In the same way Redis provides a PSUBSCRIBE interface for wildcard events, can you subscribe to wildcards from the client (browser) using Juggernaut? I'm looking for something like this:
From the client:
var jug = new Juggernaut();
jug.subscribe('event:'+event.id+':*', function(res) {
console.log(res);
});
And then from the server:
Juggernaut.publish("event:#{event.id}:foshiz", data)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论