© 2023 Hashnode
#polling
Introduction In today's world of web applications and APIs, there are several patterns for communication between the frontend and the backend. One of the most common patterns is Request-Response, wher…
Recently I wrote about the request/response model in backend communication, but this model is not suitable for every type of request. Imagine you want to upload a 50GB video to youtube, this process i…
What is the pooling operation on CNN? Pooling Layer: It is commonly used to periodically insert a Pooling layer in-between successive Conv layers in a ConvNet architecture. Its function is to progre…
What are web sockets and why do we use ?? Seamless communication is a must on the modern web. As internet speeds increase, we expect our data in real time. WebSocket, enables client and server in real time. With WebSockets, you can build mu…
In this article we are going to learn about how to achieve real time in our web application. There are multiple ways to achieve real time. One of the way is using polling method. Polling is just a fan…
In this course, we are going to learn about Polling, Http2 push, Web sockets, and Socket io. When we talk about real-time, we mean that we have some sort of server state and some sort of client state and we want them to be the same. Whether…