1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-09-09 00:30:40 +02:00

chore: update roadmap content json (#7087)

Co-authored-by: kamranahmedse <4921183+kamranahmedse@users.noreply.github.com>
This commit is contained in:
github-actions[bot]
2024-09-12 12:25:01 +01:00
committed by GitHub
parent bf80d3f052
commit 9f446764bc
5 changed files with 48 additions and 15 deletions

View File

@@ -2863,8 +2863,19 @@
},
"osvajAJlwGI3XnX0fE-kA": {
"title": "Long Polling",
"description": "Long polling is a technique where the client polls the server for new data. However, if the server does not have any data available for the client, instead of sending an empty response, the server holds the request and waits for some specified period of time for new data to be available. If new data becomes available during that time, the server immediately sends a response to the client, completing the open request. If no new data becomes available and the timeout period specified by the client expires, the server sends a response indicating that fact. The client will then immediately re-request data from the server, creating a new request-response cycle.",
"links": []
"description": "Long polling is a technique where the client polls the server for new data. However, if the server does not have any data available for the client, instead of sending an empty response, the server holds the request and waits for some specified period of time for new data to be available. If new data becomes available during that time, the server immediately sends a response to the client, completing the open request. If no new data becomes available and the timeout period specified by the client expires, the server sends a response indicating that fact. The client will then immediately re-request data from the server, creating a new request-response cycle.\n\nVisit the following resources to learn more:",
"links": [
{
"title": "Long polling",
"url": "https://javascript.info/long-polling",
"type": "article"
},
{
"title": "What are Long-Polling, Websockets, Server-Sent Events (SSE) and Comet?",
"url": "https://stackoverflow.com/questions/11077857/what-are-long-polling-websockets-server-sent-events-sse-and-comet",
"type": "article"
}
]
},
"Tt7yr-ChHncJG0Ge1f0Xk": {
"title": "Short Polling",