we implementing rest apis using apache httpd. have 1 api gives 9k buffer in response. whenever our response goes on 8k apache append "transfer-encoding:chunked" in response header , rest of response header discarded apache.
i want disable "transfer-encoding:chunked" response header when our response buffer goes on 8k retaining our useful response headers.
can 1 give me idea?
mod_buffer can cause many responses turn chunked encoding being sent content-length. more efficient whoever generates response buffer as needed determine length -- mod_buffer can generically.
the reason works mod_buffer stops headers being written/committed until full length known.
Comments
Post a Comment