What is the difference between the below 2 scenarios and will it have similar performance impact? What will be the delay between requests in scenario 2?
Will all the threads remain alive in Scenario 2?
I'm aware of the fact that thread simulates a user and loop-count means the number of times the thread will make request.
Scenario 1: If the number of thread count is 10, ramp-up time is 10 and loop count is 1.
Scenario 2: If the number of thread count is 1, ramp-up time is 1 and loop count is 10.