tldr/pages.zh/common/ab.md

20 lines
366 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# 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}}`