How to do 100 requests per second with one user and one TCP connection?

Hello, everyone!

There are a lot of topics about connections and users but I didn’t get the answer how to 100 requests per second with one user and one TCP connection? How can I control a number of TCP connections? Looks like when I use constantUsersPerSec(…) method it’s creating a new users each time.

Could you please help?

With HTTP/1.1, you can’t send a new request on a given connection until you’ve received the response of the previous one.
So you can only reach 100 requests/s with one single user and one connection if your response time is below 10ms.