3
I have a server REST/WebApi
and wanted to test its performance with simultaneous consultations.
My goal is to test, logically the performance, and also if the same is treating each request separately, that is, each query is treated by a process, thus avoiding bottlenecks in consultations.
I am currently using the Postman
for simple tests, I saw that he has a test tool, but is paid and I do not know if it meets my goal.
I wonder if there is any tool for this purpose.
An interesting option is to use Curl (http://curl.haxx.se/). You can do scritps that call Curl so you can test simultaneous connections to your REST.
– cantoni
It really is a powerful but complex tool. I wanted something more practical to accomplish this task. Or add a response to how to implement these tests.
– rubStackOverflow
Start looking for Load Testing tools. If you want something more professional recommend the Visual Studio Online.
– ILDYONE
There are two very good tools, Jmeter and Apache Benchmarking.
– user6406