servant-ekg/bench/wrk.lua

8 lines
126 B
Lua
Raw Normal View History

2016-05-13 16:15:03 +02:00
counter = 0
request = function()
path = "/hello/" .. counter
counter = counter + 1
return wrk.format(nil, path)
end