Socket IO & Adapter When Using Multiple Servers

Why Websockets? Limitations Of HTTP With HTTP, client requests a resource and the server responds with the requested data. It is a unidirectional communication - the data must be first requested by the client. A workaround for this limitation was the HTTP long polling. With long polling, client makes a http request with a long timeout period and the server uses that time period to keep sending data to the client....

January 15, 2022 · 4 min · Me