> On Nov 25, 2019, at 9:54 AM, Liam <networkimp...@gmail.com> wrote:
>
> - does the read-to-EOF stipulation also apply to Client.Get/Post() ?
Yes. Those methods are fairly simple wrappers around Do.
> - why does Response.Body.Close() before io.EOF not release unread buffers or
> otherwise prepare it for persistence?
The connection can’t be reused for another request before all the data from the
first request is read. The server is sending those bytes over the wire, and
they need to go somewhere before another response can be read. So there were
two options for how to implement Close when the whole body hasn’t been read:
1. Copy the rest of the body to /dev/null (or equivalent), and reuse the
connection like normal.
2. Close the connection, thus communicating to the server that we don’t need
that data after all.
Option 1 would generally be preferable for short responses, and option 2 for
long ones. For consistency, and because we don’t always know the response
length in advance (e.g. if it is chunked), it always does option 2.
Andy
--
You received this message because you are subscribed to the Google Groups
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to golang-nuts+unsubscr...@googlegroups.com.
To view this discussion on the web visit
https://groups.google.com/d/msgid/golang-nuts/228DAB0B-E2AB-4A5E-BBC5-76D611ED11F9%40gmail.com.