I'm trying to use ab to test my webserver, but it only supports HTTP/1.1 (reject requests that have HTTP/1.0 in the first line). The -k switch only adds a header with connection: keep-alive.
Is it possible to make ab send HTTP/1.1 request?
|
feedback
|
This question came from our site for computer enthusiasts and power users.
|
how about using Siege, it is as easy to use as ab, but it supports HTTP/1.1: | |||
|
feedback
|
abto support HTTP 1.1, or modify your web server to support HTTP 1.0. (You can probably get away with just modifyabsend send HTTP/1.1, but that's not ideal.) – David Schwartz Sep 30 '11 at 5:40