如何设置apache ab pacing?

时间:2018-01-15 03:33:41

标签: apache rest performance-testing apachebench

现在我想使用apache bench来测试我的休息api性能。

我想知道我的服务器每秒可以处理多少请求。

所以我想像apache bench那样执行以下步骤:

每秒500个请求,

每秒1000个请求,

每秒15000个请求......

1 个答案:

答案 0 :(得分:2)

这对你有用。

ab -s 9999 -k -c 2000 -n 30000 HTTP_API_URL

这是

  • ab => apache benchmarking notaion。
  • -s timeout =>秒到最大等待每个响应默认为30秒
  • -k =>使用HTTP KeepAlive功能
  • -n requests =>要执行的请求数
  • -c concurrency =>一次发出多个请求的次数