Yesterday I learned more about the WebSocket communication protocol. Compared to HTTP(s), WebSocket allows: Server to communicate with client without client first sending a request. Multiple messages going back and forth between client and server in a single connection. WebSocket is thus a better fit for applications …
Read More