使用wget模拟http并发请求

1 业务场景


有一个rest服务,需要做一个简单的压测,查看=底层数据库连接情况。


2 运行环境


Windows server


3 测试思路


使用wget模拟发起1000个==并发==http请求。



4 使用到的wget命令

# 不下载,仅检查页面是否正常(即返回的状态为200)
wget --no-cache --spider url

# 后台下载
wget -b


5 相关资源


wget免安装64位



6 脚本

  • --no-cache --spider 单独使用没有问题
  • -b 单独使用也没有问题

但是组合起来之后,--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
)

你可能感兴趣的:(操作系统,wget,spider,-b,http,并发,windows)