Month: June 2020

Comparing WebSockets with polling approaches

If you have ever built a web page's chat room by using a server-side language and a database, then you may wonder what the difference is between the WebSocket implementation and the traditional one. Polling approach The traditional chat room method is often implemented by using a polling approach. The client asks the server for an update periodically. The … Continue reading Comparing WebSockets with polling approaches