apache ap 并发测试工具

在apache软件包/bin/ab.exe
ab.exe是一个命令工具,在 cmd下运行:

cmd.exe

ab.exe -n 1000 -c 50 "http://localhost:8080/"
# -n 是请求数, -c 是并发数

有些页面是登录后才能请求, 我们可以把 cookie 值也带过去,一种是直接设置 cookie:
ab.exe -n 1000 -c 50 -C sessionid=xxxx http://xxxx
#使用大 C 来设置 cookie 值, 也可以使用设置请求头的方式来设置 cookie:
ab.exe -n 1000 -c 50 -H "Set-Cookie:xxxxxxxxx" http://xxxx

使用 -H 可以设置请求头

ab 还可以做 post 请求, 详细参数参考

http://blog.csdn.net/kutejava/article/details/8891707