February 9, 2025
Recently, I have been learning from the folks over at HelloInterview.com. In one of their articles, they do an awesome deep dive into different strategies for handling realtime updates in systems. It got me really interested in the subject, and I wanted to try out these realtime update strategies myself for learning.
In their article, they discuss two sides of updates: (1) client-side, (2) server-side. To limit the length of this article, I'll explore only client-side updates.
According to HelloInterview.com's article, there are several typical client-side update strategies: 1/ polling, 2/ long polling, 3/ server-sent events (SSE), 4/ WebSocket.
Polling is the simple strategy of calling the API every X seconds. For example, if our API's endpoint was https://jsonplaceholder.typicode.com/todos/1
, we would call this API every X seconds.
In fact, we can run the above code in our browser's console right now.
Naturally, this approach has an update delay of up to X seconds. Additionally, the expected requests per second on the server is N clients / X.
Long polling is a clever technique to reduce the update delay while still using a similar methodology as Polling. The client makes a long-running HTTP request to the server, and the server responds only once it has a new update. When the client receives the response, it handles it and sends a new HTTP request.
For long polling, the server handles most of the work. Below is a simple example (using Express on Node.js) of how the code would look like on the server side.
Note: If you set up the above server, we can test calling the above two endpoints using the below curl
commands.
Client: curl http://localhost:80/poll
Update: curl -X POST http://localhost:80/update -d '{"update": "data"}'
On the client-side, the code will look like this.
Long polling minimizes update delay to HTTP overhead and the time taken to make a new HTTP request. Still, there is a bit of delay, and communication is unidirectional (server to client).
<Work in progress>
<Work in progress>