有一个rest服务,需要做一个简单的压测,查看=底层数据库连接情况。
Windows server
使用wget模拟发起1000个==并发==http请求。
# 不下载,仅检查页面是否正常(即返回的状态为200)
wget --no-cache --spider url
# 后台下载
wget -b
wget免安装64位
但是组合起来之后,--no-cache --spider失效了,仍然会下载,所以需要显式删除
有解决这个问题的小伙伴可以在评论区进行交流,非常感谢
for /l %%i in (1,1,1000) do (
wget -b --no-cache --spider http://xxx.xxx.xxx.xxx:8080/appcontext/query/pathparam
# ping自己的回送地址5个包,一般用来做延时用的
# ping -n 5 127.1>nul
del wget-* /f/s/q
)