Heroku recently started to support WebSockets
As I understand any runtime application (client side) will keep this WebSocket open to communicate with the server. And the server will have a socket open to communicate with a client side.
Also, As I know Heroku dyno handled just one open socket previous. All requests were handled serially.
Obviously, it's not gonna fly with WebSockets (it will require 100 dynos to server just 100 simultaneous users).
And I can't seem to find info, on how many WebSockets are allowed per dyno for Heroku.
Have you seen any info on this subject?
Update 1
Oh.. I found some unofficial statistics: http://veldstra.org/2013/10/25/heroku-websocket-performance-test.html
Still looking for some more official info.