January 2018
Intermediate to advanced
366 pages
9h 7m
English
Similar to AB, the WRK is also a tool executed by the command line and serves the same purpose as the AB. The following screenshot represents the WRK tool:

To run WRK is also very simple. Just use the following command:
$ wrk -c 100 -d 10 -t 4 http://localhost:5000/
However, WRK has some different characteristics compared to AB. The preceding command means that WRK will run a performance test for ten seconds (d 10), with 100 concurrent users (c 100), and will request four threads from the operating system for this task (-t 4).
Quickly observing the command line, it can be perceived that there is no limitation or requests load statement ...
Read now
Unlock full access