from a commandline in windows:

for /F %q in (list.txt) DO ab -n 1000 https://test.com/search?%q
 

I don't know Apache Bench nor how it collects its data. My approach will probably start a new collection of data for each line in list.txt which is something you might not want. You'll have to aggregate the results of different runs by hand.

(to debug:

for /F %q in (list.txt) DO echo ab -n 1000 https://test.com/search?%q
 

which will output on the console the statement that will execute)

相关文章:

  • 2021-08-29
  • 2022-12-23
  • 2021-11-08
  • 2021-12-22
  • 2021-04-17
  • 2022-12-23
  • 2021-08-01
  • 2021-12-23
猜你喜欢
  • 2021-09-21
  • 2022-12-23
  • 2021-04-25
  • 2022-12-23
  • 2022-01-16
  • 2022-12-23
相关资源
相似解决方案