To implement a server supporting clients using web sockets, do servers keep an open HTTP connection with each client? How can this scale?
What are the \"programming mod
Generally speaking, you should expect to use WebSockets with custom server implementations designed to handle the load in a lightweight way. Such servers already exist for long-lived COMET connections and the like.