wg / wrk

Modern HTTP benchmarking tool

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Allow disable "keep alive" feature

KostyaTretyak opened this issue · comments

Single Page Applications (which are very popular now) often use two web servers: one for static files, one for dynamic requests. As a rule, wrk is used for benchmarks of dynamic web servers. And for dynamic sites, probably in 90% of cases, such a feature as "keep alive" is not used (in particular through the use of a single GraphQL query).

Considering this, it is important to have an option to disable the "keep alive" feature. So, please add an option for this.

Sorry, I was in a hurry to open an issue. This can be solved with -H 'Connection: close' option.