Hello!
I have a question regarding multiple users repeating a scenario with connection keep-alive.
In my scenario I want to simulate 100 users at once for instance. Each of the users is sending the same GET call to my service under test.
The GET request is repeated 100 times, so i get 10000 requests overall.
My question is now how connection keep-alive works in this scenario?
Does every user create one connection and sends 100 requests over this connection or does ever user create a new connection for the next GET request in my repeating scenario?
My goal is that every user creates one connection and sends their 100 requests over that connection. So that every user only creates one connection, but this connection should be kept-alive.
Thanks for clarifying!