Wrk: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 17: Line 17:
* [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]
* [https://formulae.brew.sh/formula/wrk wrk » Homebrew]
* [https://www.linkedin.com/company/thewrkco wrk » LinkenIn]
* [https://www.linkedin.com/company/thewrkco wrk » LinkenIn]
* [[Homebrew]]
* [[Homebrew]]

Revision as of 14:33, 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 wrk && cd wrk
sudo make && sudo cp wrk /usr/local/bin
sudo make clean
wrk --help

References