First introduce the difference between short links and long links:
##Short link
Connect->Transfer data->Close connection (recommended learning:PHP programming from entry to proficiency)
For example, HTTP is a stateless short link, browser and server Every time an HTTP operation is performed, a connection is established, but the connection is terminated when the task is completed. Specifically, the browser client initiates and establishes a TCP connection -> client sends an HttpRequest message -> server receives the message ->server handle and sends an HttpResponse message to the front end, which is called immediately after sending socket.close method->client receives the response message->client will eventually receive a signal from the server to disconnect the TCP connection->client disconnects the TCP connection, specifically by calling the close method. It can also be said like this: short connection means that after SOCKET is connected, the connection is disconnected immediately after sending and receiving data. Because the connection is disconnected after receiving the data, there will be no contact each time the data is accepted and processed. This is one of the reasons why the HTTP protocol is stateless.Long connection
Connect->Transfer data->Keep connection->Transfer data-> ........... ->Until one party closes the connection, possibly the client closes the connection. Long connection means that after establishing a SOCKET connection, the connection will be maintained regardless of whether it is used or not, but the security is poor. Every time we access a PHP script, we only get the return result after all PHP scripts have been executed. If we need a script to run continuously, then we must use PHP long connection to achieve the purpose of operation.<?php header("Content-Type: text/plain"); set_time_limit(0); while( true ) { // 持续执行的脚本 flush(); ob_flush(); sleep(5); } ?>
The above is the detailed content of The difference between php long connection and short connection. For more information, please follow other related articles on the PHP Chinese website!