comparison third_party/wrk/scripts/stop.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 use of thread:stop()
2
3 local counter = 1
4
5 function response()
6 if counter == 100 then
7 wrk.thread:stop()
8 end
9 counter = counter + 1
10 end