Wrk: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
Line 16: Line 16:
{|
{|
| valign="top" |
| valign="top" |
* [https://github.com/wg/wrk/issues/189  wrk » LuaJIT » Simple Scenario]
* [https://github.com/wg/wrk wrk » HTTP benchmarking tool]
* [https://github.com/wg/wrk wrk » HTTP benchmarking tool]
* [https://medium.com/@felipedutratine/intelligent-benchmark-with-wrk-163986c1587f wrk » Intelligent benchmark]
* [https://medium.com/@felipedutratine/intelligent-benchmark-with-wrk-163986c1587f wrk » Intelligent benchmark]

Revision as of 15:04, 30 October 2023

# macos
brew install wrk
wrk --help

# debian / ubuntu
sudo apt install build-essential libssl-dev git -y
git clone https://github.com/wg/wrk.git && cd wrk
sudo make && sudo cp wrk /usr/local/bin
ls -lah /usr/local/bin|grep wrk
sudo make clean
wrk --help

References