I'm using httpclient to download multiple small files from server continuously. So I want to reuse the httpclient connection to avoid costing a lot of time to allocate new connection.
And I already have some client code to try to reuse the connection, and set the idle timeout of existing connection to 3 minutes.
However the response from server always contains "Connection: close[\r][\n]", httpclient library releases the connection immediately after it meets such header.
How do I do to let httpclient to ignore the response from server, or which header I post could let server no longer return such closing header?