萬盛學電腦網

 萬盛學電腦網 >> 網絡編程 >> php編程 >> PHP session文件獨占鎖引起阻塞問題解決方法

PHP session文件獨占鎖引起阻塞問題解決方法

   這篇文章主要介紹了PHP session文件獨占鎖引起阻塞,本文講解PHP使用默認文件會話處理器時容易導致的阻塞問題解決方法,需要的朋友可以參考下

  PHP默認的會話處理器是session.save_handler = files(即文件)。如果同一個客戶端同時並發發送多個請求(如ajax在頁面同時發送多個請求),且腳本執行時間較長,就會導致session文件阻塞,影響性能。因為對於每個請求,PHP執行session_start(),就會取得文件獨占鎖,只有在該請求處理結束後,才會釋放獨占鎖。這樣,同時多個請求就會引起阻塞。解決方案如下:

  (1)修改會話變量後,立即使用session_write_close()來保存會話數據並釋放文件鎖。

  ?

1 2 3 4 5 6 session_start();   $_SESSION['test'] = 'test'; session_write_close();   //do something

  (2)利用session_set_save_handler()函數是實現自定義會話處理。

  ?

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 42 function open($savePath, $sessionName) { echo 'open is called'; return true; }   function close() { echo 'close is called'; return true; }   function read($sessionId) { echo 'read is called'; return ''; }   function write($sessionId, $data) { echo 'write is called'; return true; }   function destroy($sessionId) { echo 'destroy is called'; return true; }   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";

  當然,在 php 5.4.0之後,你可以通過實現 SessionHandlerInterface 接口或繼承 SessionHandler 類來使用。

  ?

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, $session_id) { }   public function close() {   }   public function create_sid() { }   public function read($id) { }   public function write($id, $data) { }   public function destroy($id) { } }   $handler = new MySessionHandler();   //第2個參數將函數 session_write_close() 注冊為 register_shutdown_function() 函數。 session_set_save_handler($handler, true);

  你可以對上面的代碼進行具體實現和封裝,利用mysql或其它內存數據庫來管理會話數據。還能解決使用集群

  時,session數據共享問題。

copyright © 萬盛學電腦網 all rights reserved