comparison third_party/wrk/scripts/delay.lua @ 178:94705b5986b3

[ThirdParty] Added WRK and luajit for load testing.
author MrJuneJune <me@mrjunejune.com>
date Thu, 22 Jan 2026 20:10:30 -0800
parents
children
comparison
equal deleted inserted replaced
177:24fe8ff94056 178:94705b5986b3
1 -- example script that demonstrates adding a random
2 -- 10-50ms delay before each request
3
4 function delay()
5 return math.random(10, 50)
6 end