-
What is the meaning of long polling in Web Development? |
Beta Was this translation helpful? Give feedback.
Answered by
Bunny77K9
Jun 18, 2022
Replies: 1 comment
-
Long polling is a development pattern that is used to emulate a data push operation from a server to a client machine. When long polling is operational, the client sends in a request to the server, and the data is pushed. The connection will timeout only when the data is sent to the client or after the timeout criteria are met. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
DuajDiaz
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Long polling is a development pattern that is used to emulate a data push operation from a server to a client machine.
When long polling is operational, the client sends in a request to the server, and the data is pushed. The connection will timeout only when the data is sent to the client or after the timeout criteria are met.