Hijacking Rack to add Websockets to Rails 4
As Rails 4 is full concurrent, there’s no full-stack lock on a request. You can use threads to hold websocket connections open without bogging down the server. Nick Gauthier wrote about this approach in this article: http://blog.codeship.com/websockets-in-rails-4/
Post a comment