1
0
mirror of https://github.com/wg/wrk synced 2026-05-16 10:42:37 +08:00

add optional delay() script function

This commit is contained in:
Will
2015-05-08 14:54:10 +09:00
Unverified
parent a20969192f
commit 0f8016c907
7 changed files with 49 additions and 3 deletions
+6
View File
@@ -0,0 +1,6 @@
-- example script that demonstrates adding a random
-- 10-50ms delay before each request
function delay()
return math.random(10, 50)
end