
压测
文章平均质量分 87
草莓苹果applestrawberry
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
apache benchmark(ab) 进行压测
一、apache benchmark使用 PS D:\installed-software\Apache24\bin> ./ab.exe -help Usage: D:\installed-software\Apache24\bin\ab.exe [options] [http://]hostname[:port]/path Options are: -n requests Number of requests to perform -c concurrency Numbe...原创 2022-05-17 20:02:45 · 1224 阅读 · 0 评论 -
wrk 性能测试带参数的接口
wrk在使用带参数的接口进行压测时,参数会被过滤掉 比如:http://127.0.0.1:8080/benchmark?name=1&userId=1&sex=1 这个接口 执行压测命令如下 ./wrk -t5 -c5 -d30s http://127.0.0.1:8080/benchmark?name=1&userId=1&sex=1 若这样直接执行,/benc...原创 2019-10-12 11:52:26 · 2509 阅读 · 2 评论