How to send 4000+ requests in exactly 1 second?

后端 未结 4 1587
无人及你
无人及你 2021-01-17 08:29

I have an HTTP GET request. I need to send the request to the application server for more than 4000 times exactly in 1 second.

I\'m sending

4条回答
  •  無奈伤痛
    2021-01-17 09:15

    Do you want to stick with JMeter? Otherwise Httperf is a decent tool and easy to use:

    httperf --server=www.example.com --rate=4000 --num-conns=4000
    

    for instance.

    Hope this helps a bit, although not entirely what you asked for.

提交回复
热议问题