Saif Bechan
Saif Bechan

Reputation: 17121

Is there a difference between long-polling and using Comet

I am implementing a system where I need real-time updates. I have been looking at certain scenarios and among all was Comet. Implementing this I do not see any way this is different from traditional long-polling.

In both cases you have to send a request, and then the server send a response back. In the browser you interpret the response and then you start a new request.

So why should I use comet if in both cases I need to open and close connections.

Upvotes: 18

Views: 9706

Answers (4)

xavierm02
xavierm02

Reputation: 8797

If you want to push insteal of pulling, you can use JPE.

Upvotes: 0

Jørn Schou-Rode
Jørn Schou-Rode

Reputation: 38366

As mentioned by Marcelo, Comet is usually used to describe any techniques for "HTTP streaming", including long-polling. In some cases, Comet might also refer more specifically to the Bayeux Protocol. For instance, the jQuery Comet plugin is of this protocol. From the Bayeux website:

Delivery of asynchronous messages from the server to a web client is often described as server-push. The combination of server push techniques with an Ajax web application has been called Comet. CometD is a project by the Dojo Foundation to provide multiple implementation of the Bayeux protocol in several programming languages.

Bayeux is an attempt to standardize a publish/subscribe protocol using Comet techniques, allowing for vendors of client and server side libraries to create interoperable components.

Upvotes: 11

T.J. Crowder
T.J. Crowder

Reputation: 1075337

Some Comet techniques don't require that you constantly open new requests (the chunked hidden iframe, for instance), the idea being to hold the request open and have the server periodically sending data. But this doesn't work well across all major browsers without (as one Wikipedia contributor delicately put it) negative side-effects, hence the long-polling technique. More in the linked article.

Upvotes: 12

Marcelo Cantos
Marcelo Cantos

Reputation: 186068

Comet is an umbrella term for a wide range of asynchronous update techniques, of which long-polling is just one.

Upvotes: 7

Related Questions