在 Heroku 上托管的 Rails 中创建一个聊天室
我正在尝试用 Rails 创建一个非常基本的聊天室。我很想使用 juggernaut/node.js 但 heroku 目前不支持它。我想我应该使用 heroku 插件“pusher”。有人推荐这个解决方案或任何其他替代方案吗?
I'm trying to make a pretty basic chat room in rails. I'd love to use juggernaut/node.js but heroku doesn't currently support it. I'm thinking I should just use the heroku addon "pusher." Does anyone recommend this solution or any other alternatives?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我建议你观看这个 http://railscasts.com/episodes/260-messaging- with-faye
是一种更加Evented I/O的方式。
Heroku 中有一些成功的实现,但建议根据 this 自行托管
http://groups.google.com/group/faye-users/browse_thread /线程/ade91b737e495bdf
I would suggest you to watch this http://railscasts.com/episodes/260-messaging-with-faye
It is a more Evented I/O way.
some successful implement in heroku , but it is advised to host it own self , according to this
http://groups.google.com/group/faye-users/browse_thread/thread/ade91b737e495bdf
Tom Arnfeld 的实时聊天网络应用程序:
http://pusher-chat.heroku.com/
其背后的代码:
https://github.com/tarnfeld/PusherChat-Rails
希望这能让您朝着正确的方向前进!
A real-time chat web app by Tom Arnfeld:
http://pusher-chat.heroku.com/
The code behind it:
https://github.com/tarnfeld/PusherChat-Rails
Hope that sets you in the right direction!