Server justice testing in C #

I have a server that is already configured and running. I would like to test it if this is true for users nand limits them equally. To do this, I would like to establish nconnections to the server (just enter the website) and check the response time for each of them. The problem is that I do not want to use computers nfor this task. How to do this with just one computer? Should I emulate the IP addresses of senders (those who send HttpRequest)?

+4
source share
1 answer

The best way is to use C # multithreading. library thread. you can create n queries. but the problem is that when you measure the time (you can use the C # stopwatch object) of the response, the client may be overloaded and cannot measure the exact time

0
source

All Articles