Proper way to measure the scalability of web Application

Posted by Jorge on Programmers See other posts from Programmers or by Jorge
Published on 2012-03-30T04:17:06Z Indexed on 2012/03/30 5:41 UTC
Read the original article Hit count: 304

Filed under:

Let's say that I have a web Application where i'm going to have 300 users and each one have to see data on real time, imagine that each client make an ajax call to the server to see in real time what's happens with the changes of the data, this calls are made each 300 ms per user. I know that i can run a simulation to see if the hardware of my server supports this example. But what happen's if the number of users start to grow up. Is there a way that i can measure the hardware needed to handle this growing behavior, a software, a formula, algorithm or maybe recommend me if i need to implement an distributed application with multiplies servers and balance the loads.

© Programmers or respective owner