Last active
May 8, 2018 22:25
-
-
Save lstellway/6ab5307507cadda7f86c83825919f9b1 to your computer and use it in GitHub Desktop.
Tools for testing server performance
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CURL | |
curl -o /dev/null -w "Connection Time: %{time_connect} TTFB: %{time_starttransfer} Total Time: %{time_total} \n" https://example.com/ | |
Documentation & formatting variables: | |
https://curl.haxx.se/docs/manpage.html#-w | |
Apache Bench | |
ab -n 1000 -c 100 https://example.com/ | |
Documentation: | |
https://httpd.apache.org/docs/2.4/programs/ab.html |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment