Click here to Skip to main content
15,881,281 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi All,
How much internet speed is required to run application it will take 100000 users requests can u guide me
Posted
Comments
Fredrik Bornander 8-Nov-13 5:31am    
http://upload.wikimedia.org/wikipedia/commons/1/10/2_By_4_Clue_Stick.jpg

1 solution

Basically you start with: 100,000 per second? What is the request? What is the response? It that a sustained or peak rate?

However keep in mind that is far different to say that your business will have 100,000 customers and to say that they will all make one request in one second.

Not to mention as well that a response often requires computation. So if the requests are not exactly the same then a distribution of the type of request is also relevant.

But a very simple computation is that if you do have 100,000 requests per second and each request is 1k and each response is 2k then the answer is...

((1000 + 2000) * 100,000) * 1.6 = bytes per second
bytes per second * 8 = bit per second.

The 1.6 is a fudge factor in the above.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900