Andrew Gaydenko wrote:
Is ApacheBench intended to work with (simultaneous) persistent connection and
chunked response?
Yes, and no.
the ab -k flag toggles keepalive behavior for keepalibes, -c sets the number
of parallel connections.
ab advertises HTTP/1.0 so it's not chunked-ready. Good arg
Andrew Gaydenko wrote:
OK. Let's try another way. Is there a possibility to force Apache server to
use chunked response? Probably I have missed something in doc...
Not from the client, per say. When the client advertises HTTP/1.1 support,
it is required to accept Transfer-Encoding: chunked as
Brian Buesker wrote:
I was debugging some issues related to locking in mod_dav_svn this week,
and eventually tracked down the problem to the fact that
apr_bucket_type_eos was being included in the BSS segment of the httpd
executable (two other apr_bucket_types are also included in the BSS).
This
Andrew Gaydenko wrote:
>
> Is ApacheBench intended to work with (simultaneous) persistent connection
> and chunked response?
>
It seems nobody knows :-)
OK. Let's try another way. Is there a possibility to force Apache server to
use chunked response? Probably I have missed something in doc..