recently reading "schematic HTTP", there is no problem with the understanding of the protocol, but there is some confusion in the logical implementation.
- who completes the segmentation and splicing of HTTP messages when transmitting in blocks? The segmentation is carried out in Server, so is the Web gateway (such as Nginx and other servers) or the Web framework (Flask,Tornado, etc.) to complete the segmentation? The same stitching task is done by the browser or the front-end code? The functional implementation of the header field of
- HTTP, for example, the following request header field
If-xxx
, is its logical implementation written in the business code by the Web framework of the server or when the Web application is developed?