(SOL5379) Chunking is a technique that HTTP servers use to improve responsiveness. Chunking can help you avoid situations where the server needs to obtain dynamic content from an external source and delays sending the response to the client until receiving all of the content so the server can calculate a Content-Length header.
When chunking is enabled, instead of delaying sending packets to the client until all content is available, the server will:
Send the response in chunks.
Add a Transfer-Encoding: c
↧