Leel Vinodleelvinod.hashnode.dev·Jul 20, 2023Exploring Real-Time Communication: From IP and Port to WebSockets and SSEIP (Internet Protocol) and Port They are essential components of internet communications. IP (Internet Protocol) Address: This is the unique identifier that devices use to connect to each other on a network. It can be likened to a postal address for...Discuss·103 readsHLDhld
Pavlo Kolodkapavlokolodka.hashnode.dev·May 30, 2023Efficient Client-Server Communication: An Overview of Protocols and TechniquesIntroduction: “In the world of web development and real-time communication, understanding various methods of data exchange is crucial. Modern web applications require efficient and seamless communication between the client and the server to deliver ...Discuss·1 likeSSE
Miguel Acevedoblog.mimixtech.com·May 9, 2023Push or Poll - Which One is Right For Your Application?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, where the frontend sends a request to the backend and ...Discuss·26 readsBackend Development
Babatunde Onasanyablog.tundeonasanya.dev·Mar 28, 2023Short Polling vs. Long Polling: Understanding the Differences and When to Use EachRecently 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 is very inefficient with the request/response model...Discuss·13 likes·218 readspollingNice write up. Thank you for sharing 4
Bhagirath Deshani bhagirathkd.hashnode.dev·Jan 21, 2023#64 Machine Learning & Data Science Challenge 64What 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 progressively reduce the spatial size of the representat...DiscussMachine Learning & Data Science Interview ChallengesMachine Learning
Mayank Singhmayank-blogs.hashnode.dev·Nov 12, 2022Web-Sockets part-1What 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 multiplayer ...Discuss·1 like·34 readswebsockets
aditya kumaradityakmr.hashnode.dev·Oct 25, 2022Real time using pollingIn 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 fancy term where we continuously make api calls to ge...Discuss·95 readspolling
amschel🦀techlia.hashnode.dev·Sep 29, 2022Complete Introduction To Real-timeIn 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 that is a...Discuss·44 readspolling