Sending simultaneous requests to the server

Mehran

Member
Joined
Aug 18, 2021
Messages
7
Programming Experience
Beginner
Hello . Good time
Suppose, we have a program that is supposed to connect to the server and look for the profile of a student among thousands of students. My question is: when I test the program as a programmer, I am one person, even if my queries are non-standard, it is still possible. Answers to queries should be returned to me quickly. But how can we virtually simulate this issue that thousands of people have from the program at the same time do they use I want to know if a thousand people are connected to the program, then what will be the amount of RAM and Cpu consumption?
 
Search for the terms "load testing" or "performance profiling".
 
Hello, this is Gulshan Negi.
Well, I did some research on it on Google, and I found that to simulate the scenario of thousands of people using the program at the same time, you can use load testing or stress testing tools. These tools simulate multiple users accessing the application simultaneously and generate a heavy load on the application, which helps identify how the application performs under high load conditions.
Some popular load testing tools include Apache JMeter, LoadRunner, and Gatling.
I hope it will help you.
Thanks
 
Back
Top Bottom