ab: update grammar; update link (#5433)

This commit is contained in:
bl-ue
2021-03-13 16:44:59 -05:00
committed by GitHub
parent 8c8445aca4
commit 8f2ed246f7
7 changed files with 16 additions and 16 deletions

View File

@@ -1,24 +1,24 @@
# ab
> Apache Benchmarking tool. The simplest tool to perform a load testing.
> More information: <https://httpd.apache.org/docs/2.4/programs/ab.html>.
> Apache HTTP server benchmarking tool.
> More information: <https://httpd.apache.org/docs/current/programs/ab.html>.
- Execute 100 HTTP GET requests to a given URL:
`ab -n {{100}} {{url}}`
- Execute 100 HTTP GET requests, processing up to 10 requests concurrently, to given URL:
- Execute 100 HTTP GET requests, in concurrent batches of 10, to a URL:
`ab -n {{100}} -c {{10}} {{url}}`
- Use keep alive:
- Execute 100 HTTP POST requests to a URL, using a JSON payload from a file:
`ab -n {{100}} -T {{application/json}} -p {{path/to/file.json}} {{url}}`
- Use HTTP [K]eep Alive, i.e. perform multiple requests within one HTTP session:
`ab -k {{url}}`
- Set the maximum number of seconds to spend for benchmarking:
`ab -t {{60}} {{url}}`
- Execute 100 HTTP POST requests to a given URL, using a JSON payload from a file:
`ab -n {{100}} -T {{application/json}} -p {{data.json}} {{url}}`