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

add script setup() and thread methods

This commit is contained in:
Will
2015-02-07 17:03:17 +09:00
Unverified
parent 6f0aa32ede
commit 9b84d3e1a4
14 changed files with 386 additions and 153 deletions
+22
View File
@@ -0,0 +1,22 @@
-- example script that demonstrates use of setup() to pass
-- a random server address to each thread
local addrs = nil
function setup(thread)
if not addrs then
addrs = wrk.lookup(wrk.host, wrk.port or "http")
for i = #addrs, 1, -1 do
if not wrk.connect(addrs[i]) then
table.remove(addrs, i)
end
end
end
thread.addr = addrs[math.random(#addrs)]
end
function init(args)
local msg = "thread addr: %s"
print(msg:format(wrk.thread.addr))
end