Solution to blocking problem caused by exclusive lock of PHP session file

Source: Internet
Author: User
Tags php session

This article mainly introduced the PHP session file exclusive lock to cause congestion, this article explains PHP using the default file sessions processor easy to lead to blocking problem solving method, the need for friends can refer to the

The default session processor for PHP is Session.save_handler = files (i.e. file). If the same client concurrently sends multiple requests (such as Ajax sending multiple requests at the same time), and the script executes longer, it can cause the session file to block and affect performance. Because PHP executes session_start () for each request, it obtains a file exclusive lock that will not be released until the request processing is complete. In this way, multiple requests can cause blocking at the same time. The solution is as follows:

(1) After modifying the session variable, immediately use Session_write_close () to save the session data and release the file lock.

?

1 2 3 4 5 6 Session_Start (); $_session[' test ' = ' test ';   Session_write_close (); Do something

(2) using the Session_set_save_handler () function is to implement custom session processing.

?

1-2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19-20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40-41 function open ($savePath, $sessionName) {echo ' Open is called ';   function Close () {echo ' close are called '; return true;}   function Read ($sessionId) {echo ' read is called ';   function Write ($sessionId, $data) {echo ' write is called ';   function Destroy ($SESSIONID) {echo ' destroy is called ';   Function GC ($lifetime) {echo ' GC is called '; return true;} Session_set_save_handler ("Open", "close", "read", "write", "Destroy", "GC");   Register_shutdown_function (' Session_write_close ');   Session_Start (); $_session[' foo '] = "bar";

Of course, after PHP 5.4.0, you can use it by implementing the Sessionhandlerinterface interface or inheriting the Sessionhandler class.

?

1, 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 Class Mysessionhandler extends Sessionhandler {public Function __construct () {} Public Function open ($save _path, $se ssion_id) {} public Function Close () {} public Function Create_sid () {} public function read ($id) {} public   function Write ($id, $data) {} Public function destroy ($id) {}} $handler = new Mysessionhandler (); The 2nd parameter registers the function Session_write_close () as the Register_shutdown_function () function. Session_set_save_handler ($handler, true);

You can implement and encapsulate the above code, using MySQL or other memory databases to manage session data. can also solve the use of cluster

, session data sharing is a problem.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.