Locust任务等待的几种方式:
constant(2)
任务执行完毕等待2秒开始下一任务
between(1,7)
任务执行完毕等待1-7秒(中间随机取值)开始下一任务
constant_pacing(2)
从任务启动开始计算时间,若任务耗时超过该时间,则任务结束后立即执行下一任务;若任务耗时不超过该时间,则等待达到该时间后执行下一任务。
constant_throughput(1/6)
def constant_throughput(task_runs_per_second):
return constant_pacing(1 / task_runs_per_second)
标签:runs,constant,Locust,per,任务,机制,等待
From: https://www.cnblogs.com/Wang-py/p/17431946.html