vote up 0 vote down star

Is there any limit to number of ajax calls on a web page ? Will it affect the performance of the web application if we have too many ajax calls/timers that have been set to run at frequent interval .

Regards, Mithun

flag

1  
If you have many users and many AJAX calls, it will take a huge hit on your server. Be careful. Use JSON to reduce bandwidth. Try to club multiple AJAX calls into a single one. – Alec Smart Aug 24 at 7:20

1 Answer

vote up 4 vote down check

It depends on the browser. Firefox has a default of 2 open requests per host, the rest will be queued. It is configurable, but hardly anyone changes the default.

I'm unsure of other browsers, but google might help if you need the numbers.

link|flag

Your Answer

Get an OpenID
or

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