Results 465 comments of Martin Algesten

> and the body + headers were small enough to fit in our buffer this part i think we can improve. right now it's up to wheter the content was...

I'm ok with this addition. PR welcome.

Can we solve this with a buffer of configurable size? (This is an idea @jsha started) The default buffer size would be some multiple of a probable initial TCP window...

> I'm not too sure about the intricacies of HTTP and if the server must respond with 307 / 308 when only receiving a partial payload, or if it might...

> That's pretty unusual - though perhaps more common in the HTTP/2 world? Lol.. And here I was thinking that would be the norm, cause how would you otherwise detect...

An IP address is quite small. I'd be fine with adding that to response. Happy to accept a PR for this.

Hi! Thanks for this! If we are to add this, I think the API should avoid `Vec`, and be: ```rs pub fn query_pairs(mut self, pairs: &[(&str, &str)]) -> Self {...

I think this looks good. Unless @jsha objects, we can merge it.

The connection is auto-put back in the pool on drop (if possible), we could make some explicit API for that. On the `Response` object we could add something like this:...