简单描述: 1.gem 'faye-rails'
2.RAILS_ENV=production bundle exec rackup private_pub.ru -s thin -d -E production 使用 thin 启动 faye,并监听 9292 端口。
3.proxy_pass http://127.0.0.1:9292; 生产环境下,使用 nginx 与 unicorn,这里使用一个代理,将请求转发给 9292 端口的服务。
请问: 1.这种方式启动 faye,负载量和性能怎么样?(如果服务器的配置是 2 核 2G 或者 4 核 4G 或者其他,最好有参考的数据)
2.如果不使用 thin,如何使用 nginx 或其他启动 faye?(希望高手贴下配置,谢谢)