Restricting Ajax calls on a webpage?

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

Regards, Mithun

+2


source to share


1 answer


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



I'm not sure about other browsers, but google can help if you need numbers.

+5


source







All Articles