Rails 3.1 中哪个框架最适合发布消息
我正在尝试构建一个应用程序,在其中我将用户的消息发布给订阅该标签的所有其他用户? 我想知道哪个框架适合开发。我听说过 Faye 和 Redis,但我不知道哪个最好用。
I am trying to build an application where I would be publishing the message of user to all the other users who are subscibed to that tag?
I wanted to know which framework is good to go for development. I have heard about Faye and Redis but I have no idea which is best to use.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
简而言之,
Redis 适合服务器集群内的进程间消息传递。
如果您想通过网络提供可公开访问的发布/订阅服务,Faye 更合适。
现在你可以选择最适合你的!!!
In short
Redis is appropriate for inter-process messaging within your server cluster.
Faye is more appropriate if you want to provide a publicly accessible pub/sub service over the web.
Now you can choose what best suits you !!!