vote up 2 vote down star
3

In AJAX applications that need to poll the server in regular intervals (like a chat applications), what is the recommended minimum time between two calls, so that the update is done as quickly as possible? What times are considered as hogs for the server and the client?

flag

80% accept rate

4 Answers

vote up 1 vote down check

It depends on the application, but for chat you probably want to poll pretty often - 1 to 4 seconds I'd say. What you can do is dynamically change the polling interval to decrease your server load - if nobody has said anything for a minute, increase to 10 seconds... after 5 minutes increase to 30 seconds - that kind of thing.

link|flag
vote up 2 vote down

The answer to this question is very much dependent on:

  1. How much data is sent in each poll
  2. How many users you will have online at a time
  3. How much bandwidth your server can handle
  4. How "fresh" the data on your client needs to be

Without knowing any of these specifics for your app, it's going to be hard to give a good recommendation. Have you looked into a method where the client connects to the server, and the server holds the connection open until there is data available? Then the server delivers the data, and the client immediately reconnects and waits again. That can be tricky to get working, but you might be able to maximize both efficiency of bandwidth AND responsiveness that way.

link|flag
vote up 1 vote down

There is no real limit, other than the number of simultaneous users you expect to burden your server load with. You can probably dynamically tune this on the client end by keeping track of average response times.

In order to do this properly, under a decent load, you're betting off using Comet.

link|flag
Dynamic tuning can also be done on the server (which probably knows best about how overloaded it is) in the form of a ‘don't call me back for N milliseconds’ member on the returned value. But yeah, Comet-style interaction is ideal if your server/framework can support it efficiently. – bobince Oct 30 '08 at 21:11
vote up 2 vote down

We have a different solution for AJAX polling in our chat:

The request is sent to the server and polls for the data on the server side in cycle with very short delay intervals (like 0.5 sec). Ones data is get, the request returns. Then next request is sent immediately to the server. All requests' timeout is set to something like 60 sec, when it expires without getting data, next request replaces it.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.