comparison third_party/wrk/CHANGES @ 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 master
2
3 * Require OpenSSL 1.1.0+
4
5 wrk 4.0.2
6
7 * Send hostname using TLS SNI.
8 * Add optional WITH_OPENSSL and WITH_LUAJIT to use system libs.
9 * Bundle OpenSSL 1.0.2.
10 * delay() can return milliseconds to delay sending next request.
11
12 wrk 4.0.0
13
14 * The wrk global variable is the only global defined by default.
15 * wrk.init() calls the global init(), remove calls to wrk.init().
16 * Add wrk.lookup(host, port) and wrk.connect(addr) functions.
17 * Add setup phase that calls the global setup() for each thread.
18 * Allow assignment to thread.addr to specify the server address.
19 * Add thread:set(name, value), thread:get(name), and thread:stop().
20 * Record latency for every request instead of random samples.
21 * Latency and requests in done() are now callable, not indexable.
22 * Only record timeouts when a response is actually received.
23 * Remove calibration phase and record rate at fixed interval.
24 * Improve correction of coordinated omission.