The author has developed a simple, stable, and scalable delayed message queue framework for high-concurrency scenarios. It has precise timed tasks and delayed queue processing functions. Since it was open sourced for more than half a year, it has successfully provided precise timed scheduling solutions for more than a dozen small and medium-sized enterprises and has withstood the test of production environments. In order to benefit more friends, the open source framework address is now provided: https://github.com/sunshinelyz/mykit-delay
In the Internet era, the Http protocol is widely used. I believe that you are familiar with the Http protocol. Yes, most of the interfaces you write are Http interfaces, and most of the data exchanges between the front-end and the back-end are also through the Http protocol. Have you ever thought about what the message header contains in the Http protocol, in addition to the message body that we often use to transmit data? Today, Binghe will take you to find out.
HTTP (HyperTextTransferProtocol) is the Hypertext Transfer Protocol, the current universal protocol for web page transmission. The HTTP protocol adopts a request/response model, where the browser or other client sends a request and the server responds. As far as the entire network resource transmission is concerned, it includes two parts: message-header and message-body. First, the message-header is transmitted, that is, the http header message**. The http header message is usually divided into 4 parts: general header, request header, response header, entity header. However, this division feels unclear in terms of understanding. According to Wikipedia's organization of the http header content, it is generally divided into two parts: Request and Response.
After working hard for most of the night, Binghe compiled the following description of Header parameters, hoping that it can bring substantial help to my friends.
The following table summarizes the header examples.
parameter | illustrate | Example |
---|
Accept-Ranges | Indicates whether the server supports specified range requests and what type of multipart requests | Accept-Ranges: bytes |
Age | Estimated time from the origin server to the proxy cache (in seconds, non-negative) | Age: 12 |
Allow | A valid request for a network resource. If it is not allowed, a 405 error is returned. | Allow: GET, HEAD |
Cache-Control | Tells all cache mechanisms whether or not they can cache and what type | Cache-Control: no-cache |
Content-Encoding | The return content compression encoding type supported by the web server. | Content-Encoding: gzip |
Content-Language | Response body language | Content-Language: en,zh |
Content-Length | The length of the response body | Content-Length: 348 |
Content-Location | Request a resource to use as an alternative address | Content-Location: /index.htm |
Content-MD5 | Returns the MD5 checksum of the resource | Content-MD5: Q2hlY2sgSW50ZWdyaXR5IQ== |
Content-Range | The byte position of this part in the entire response body | Content-Range: bytes 21010-47021/47022 |
Content-Type | Returns the MIME type of the content | Content-Type: text/html; charset=utf-8 |
Date | The time when the original server message was sent | Date: Tue, 15 Nov 2010 08:12:31 GMT |
ETag | The current value of the entity tag of the request variable | ETag: “737060cd8c284d8af7ad3082f209582d” |
Expires | The date and time the response expires | Expires: Thu, 01 Dec 2010 16:00:00 GMT |
Last-Modified | The last modification time of the requested resource | Last-Modified: Tue, 15 Nov 2010 12:45:26 GMT |
Location | Used to redirect the recipient to a non-requested URL to complete the request or identify a new resource | Location: http://www.zcmhi.com/archives/94.html |
Pragma | Contains implementation-specific instructions that can be applied to any receiver in the response chain | Pragma: no-cache |
Proxy-Authenticate | It specifies the authentication scheme and parameters that apply to the proxy URL. | Proxy-Authenticate: Basic |
refresh | Applies to redirection or when a new resource is created, redirect after 5 seconds (proposed by Netscape, supported by most browsers) | Refresh: 5; url= http://www.zcmhi.com/archives/94.html |
Retry-After | If the entity is temporarily unavailable, notify the client to try again after a specified time | Retry-After: 120 |
Server | Web server software name | Server: Apache/1.3.27 (Unix) (Red-Hat/Linux) |
Set-Cookie | Setting Http Cookies | Set-Cookie: UserID=JohnDoe; Max-Age=3600; Version=1 |
Trailer | Indicates that the header field exists at the end of the chunked transfer encoding | Trailer: Max-Forwards |
Transfer-Encoding | File transfer encoding | Transfer-Encoding: chunked |
Vary | Tells downstream proxies whether to use cached responses or request from the origin server | Vary: * |
Via | Tells the proxy where the client response is sent from | Via: 1.0 fred, 1.1 nowhere.com (Apache/1.1) |
Warning | Warns entities of possible problems | Warning: 199 Miscellaneous warning |
WWW-Authenticate | Indicates the authorization scheme that the client requesting entity should use | WWW-Authenticate: Basic |
Date | The date and time the request was sent | Date: Tue, 15 Nov 2010 08:12:31 GMT |
Content-Type | The MIME information corresponding to the entity in the request | Content-Type: application/x-www-form-urlencoded |
Expect | Request specific server behavior | Expect: 100-continue |
From | Email of the user making the request | From: [email protected] |
Host | Specify the domain name and port number of the requested server | Host: www.zcmhi.com |
If-Match | Only valid if the request content matches the entity | If-Match: “737060cd8c284d8af7ad3082f209582d” |
If-Modified-Since | If the requested part has been modified after the specified time, the request succeeds; if it has not been modified, a 304 code is returned. | If-Modified-Since: Sat, 29 Oct 2010 19:43:31 GMT |
If-None-Match | If the content has not changed, a 304 code is returned. The parameter is the Etag previously sent by the server. It is compared with the Etag responded by the server to determine whether it has changed. | If-None-Match: “737060cd8c284d8af7ad3082f209582d” |
If-Range | If the entity has not changed, the server sends the missing part to the client, otherwise it sends the entire entity. The parameter is also Etag | If-Range: “737060cd8c284d8af7ad3082f209582d” |
If-Unmodified-Since | The request succeeds only if the entity has not been modified after the specified time. | If-Unmodified-Since: Sat, 29 Oct 2010 19:43:31 GMT |
Max-Forwards | Limit the time that information travels through proxies and gateways | Max-Forwards: 10 |
Pragma | Used to contain implementation specific instructions | Pragma: no-cache |
Proxy-Authorization | An authorization certificate to connect to the proxy | Proxy-Authorization: Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ== |
Range | Request only part of the entity, specify the range | Range: bytes=500-999 |
Referer | The address of the previous web page, followed by the currently requested web page, i.e. the source | Referer: http://www.zcmhi.com/archives/71.html |
TE | The client is willing to accept the transfer encoding and notify the server to accept the tail header information | TE: trailers, deflate; q=0.5 |
Upgrade | Specify a transport protocol for the server to convert (if supported) | Upgrade: HTTP/2.0, SHTTP/1.3, IRC/6.9, RTA/x11 |
User-Agent | User-Agent contains the user information that issued the request. | User-Agent: Mozilla/5.0 (Linux; X11) |
Via | Notify the intermediate gateway or proxy server address and communication protocol | Via: 1.0 fred, 1.1 nowhere.com (Apache/1.1) |
Warning | Warning message about the message entity | Warn: 199 Miscellaneous warning |
Accept | Specify the content types that the client can receive | Accept: text/plain, text/html |
Accept-Charset | The character encodings that the browser can accept. | Accept-Charset: iso-8859-5 |
Accept-Encoding | Specifies the compression encoding type of content returned by the web server that the browser can support. | Accept-Encoding: compress, gzip |
Accept-Language | The languages accepted by the browser | Accept-Language: en,zh |
Accept-Ranges | You can request one or more sub-range fields of a web page entity. | Accept-Ranges: bytes |
Authorization | HTTP Authorization Certificate | Authorization: Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ== |
Cache-Control | Specify the cache mechanism to be followed for requests and responses | Cache-Control: no-cache |
Connection | Indicates whether a persistent connection is required. (HTTP 1.1 uses a persistent connection by default) | Connection: close |
Cookie | When an HTTP request is sent, all cookie values stored under the requested domain name will be sent to the web server. | Cookie: $Version=1; Skin=new; |
Content-Length | Request content length | Content-Length: 348 |
My liver is not moving anymore and my eyes are too sleepy to open. I'm going to sleep first. I suggest my friends to save this article first and read it later.
This article is reprinted from the WeChat public account "Glacier Technology". You can follow it through the QR code below. To reprint this article, please contact the Glacier Technology public account.