Vidya
Vidya

Reputation: 8207

limit for Ajax calls on a web page?

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

Upvotes: 2

Views: 319

Answers (1)

Paul Tarjan
Paul Tarjan

Reputation: 50642

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.

Upvotes: 5

Related Questions