如何对本地webapp进行压力测试?

时间:2016-10-27 09:21:39

标签: web benchmarking stress-testing

今天想要对我的本地webapp进行压力测试,但我不知道如何。 我目前使用简单的shell脚本

#!/bin/sh

while [ true ]
do
        curl http://localhost:5000/cabinet-dentaire-nice/cab &> /dev/null
done

但这不是我想要的。

我想在同一时间用很多请求测试它,而不是请求的快速序列。 我该怎么办?

0 个答案:

没有答案