Paul Fournel
Paul Fournel

Reputation: 11207

How much is too many ajax calls?

I want to develop a web application and I do not want to make my server crash. This is why I ask this question. How much ajax requests can a web server handle?

I know this will depend on the server and and the background actions (calling SQL Server, computation, ...) that need to be done before the aswser is provided to the ajax request.

Here is what I would need to do:

How many clients can I handle at the same time without any connection issues?

Upvotes: 1

Views: 2412

Answers (1)

Ameer Tamboli
Ameer Tamboli

Reputation: 1298

You need to perform a load test to arrive at a number. You need to watch different parameters of your setup i.e. number of concurrent threads on Web/App Server. Number of database connections in the connection pool and so on.

You can use JMeter for performing a load test. You can send the data (which you are sending through AJAX) to URL using JMeter.

Upvotes: 1

Related Questions