mirror of
https://github.com/wg/wrk
synced 2025-01-08 23:32:54 +08:00
7 lines
141 B
Lua
7 lines
141 B
Lua
-- example script that demonstrates adding a random
|
|
-- 10-50ms delay before each request
|
|
|
|
function delay()
|
|
return math.random(10, 50)
|
|
end
|