Scaling websockets to million connections
Understanding how to scale
Scaling a websocket is a hard task compared to http, as the connections are persistent in websocket and we cannot share the same connection between 2 different servers.
Like in http we can just create many instances of our ...
nimbusnotes.hashnode.dev6 min read