Files
tldr/pages.zh/common/ab.md
2019-04-18 01:14:55 +05:30

20 lines
366 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# ab
> Apache基准测试工具.最简单的压力测试工具.
- 向目标URL执行100次HTTP GET请求:
`ab -n {{100}} {{url}}`
- 使用10个并发请求同时向目标URL执行100次HTTP GET请求:
`ab -n {{100}} -c {{10}} {{url}}`
- 使用 keep alive:
`ab -k {{url}}`
- 为基准测试设置最大的测试时间(单位: 秒):
`ab -t {{60}} {{url}}`