用shell命令curl模拟简单的压力测试

我们知道apache中的ab测试可以进行一定的压力测试

有没有别的方式呢

我们可以通过curl来模拟并发

见代码

```
for i in {1..50};
do
curl http://www.test.com/my_service &
done
[root@web_dev yansiyu]# cat concurrent.sh
#!/bin/bash
for i in {1..100}
do
#echo $i
curl -Is "http://www.test.com/test" &
done

for i in {1..100}
do
{
#echo $i
curl -Is "http://www.test.comtest"
}&
done
wait
```

    A+
发布日期:2021年02月07日  所属分类:未分类

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: