POST vs GET methods - at the network level, which is more impacted by latency?
问题 Is there any difference in network communication for HTTP GET and POST requests? With GET, I understand that the entire request is sent in one go. With POST, I think the initial request is sent, and then a second request is sent which sends all the parameters. For example, assume that the latency between server and client is 500ms. What would be the total time for a GET vs POST call? 回答1: The packets are all TCP packets, which carry the HTTP protocol, the request method doesn't change the