Last active
October 7, 2016 11:39
-
-
Save kamilziajka/d0efe0c04cbef38b3ef751e76b42e411 to your computer and use it in GitHub Desktop.
apache benchmark
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
#!/usr/bin/env sh | |
ab -p input.json -T application/json -c 8 -n 10000 http://localhost:5000/ |
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
#!/usr/bin/env sh | |
curl -X POST -d @input.json --header "Content-Type: application/json" http://localhost:5000/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment