How to interpret “Connection: keep-alive, close”?

后端 未结 4 1014
抹茶落季
抹茶落季 2020-12-24 12:28

From what I understand, a HTTP connection could either be keep-alive or close.

I sent a HTTP request to a server:

GET /page         


        
4条回答
  •  轮回少年
    2020-12-24 13:14

    It means that the server won't do persistent connections and will close the connection after this request.

提交回复
热议问题