使用负载测试进行负载测试 Node.js:如何设置每秒请求数?
Loadtesting Node.js with loadtest : how to set requests per second?
我正在尝试使用负载测试对 Node.js 应用进行负载测试 - loadtest -npm
我想要实现的是在 300 秒的持续时间内每秒发送 10 个请求(不超过 10 个是关键)。
我试过这个:
loadtest -t 300 --rps 10 [url]
但不幸的是它不起作用:只有一个请求被发送到 Node.js。
问题是相同的:
loadtest -n 3000 --rps 10 [url]
不使用选项 --rps loadtest 使用 -n 或 -t 选项连续向应用程序发送请求。
您还需要使用“-c”设置并发。
现在它只发送 1 条消息并等待它返回
You should add a concurrency of at least 10 (10 unanswered messages sent to most before you can send more)
我正在尝试使用负载测试对 Node.js 应用进行负载测试 - loadtest -npm
我想要实现的是在 300 秒的持续时间内每秒发送 10 个请求(不超过 10 个是关键)。
我试过这个:
loadtest -t 300 --rps 10 [url]
但不幸的是它不起作用:只有一个请求被发送到 Node.js。
问题是相同的:
loadtest -n 3000 --rps 10 [url]
不使用选项 --rps loadtest 使用 -n 或 -t 选项连续向应用程序发送请求。
您还需要使用“-c”设置并发。 现在它只发送 1 条消息并等待它返回 You should add a concurrency of at least 10 (10 unanswered messages sent to most before you can send more)