1. 區分讀鎖定 和 寫 鎖定。
如果每次都使用 寫鎖定,那麼連多個程序讀取乙個檔案也要排隊,這樣的效率肯定不行。
2. 區分 阻塞 與 非 阻塞模式。
一般來說,如果乙個程序在寫乙個檔案的時候,另外乙個程序應該被阻塞,但是,很多時候,我們可以先乾點別的事情,
然後再判斷一下是否有其他人在寫檔案,如果沒有,再加入資料,這樣的效率更高。
3. 修復了 鎖定檔案在linux 上的bug,特別是 在 gfs 檔案系統上的bug。
**如下:
複製** **如下:
php
class file_lock
else
} $this->mode = $mode;
$thygcvsjxactis->handle = @fopen($this->name, $mode);
if ($this->handle == false)
} public function close() }
public function __destruct()
public function lock($locktype, $nonblockinglock = false)
else
} public function readlock()
public function writelock($wait = 0.1)
} while ((!$canwrite) && ((microtime(true) - $starttime) < $wait));
} /**
* if you want't to log the number under multi-thread system,
* please open the lock, use a+ mod. then fopen the file will not
* destroy the data.
* * this function increment a delt value , and s**e to the file.
* * @param int $delt
* @return int
*/ public function increment($delt = 1)
public function get()
public function set($value)
public function unlock()
else
} }
?>
測試**:
複製** **如下:
<?php
/**
* 進行寫鎖定的測試
* 開啟執行緒1
*/ require("file_lock.php");
$lock = new file_lock(dirname(dirname(__file__)) . "/filelock.lock");
/** 單個執行緒鎖定的速度 1s 鐘 3萬次。 **/
/** 兩個執行緒寫,兩萬的資料 大概要 7s 鐘*/
/** 乙個執行緒寫,一萬的資料 大概程式設計客棧要 3.9s 鐘,居然兩個檔案同時寫,要快一點*/
/** 不進行鎖定,乙個程序 寫大概要 2.8s 鐘,加鎖是有代價的。 */
/** 不進行鎖定,兩個程序 分布不是很均勻,而且大多數都衝突 */
$lock->writelock();
$lock->increment();
$lock->unlock();
while ($lock->get() < 2)
sleep(1);
echo "begin to runing \n";
$t1 = microtime(true);
for ($i = 0; $i < 10000; $i++)
$t2 = microtime(true) - $t1;
echo $t2;
?>
我增加了乙個 increment 的函式,可以實現簡單的執行緒同步,讓兩個程序同時執行某段**,當然,這個有一定的誤差
這裡的誤差是 0.001s。
把這個類簡單的用到 前面的memcache 訊息佇列中就可以實現 執行緒安全的訊息佇列。
本文標題: php 程序鎖定問題分析研究
本文位址: /wangluo/php/53193.html
Linphone 架構分析研究
整個軟體分為兩層,上層為使用者介面前端 user inte ce frontends 下層為linphone 核心引擎 linphone core engine 功能模組說明 1 mediastreamer22 ortp2 ortp 是乙個rtp 庫。為基於rtp 協議的 流傳輸提供支援。通過med...
「雲」概念的分析研究
if you want tochange any informationabout your or withdraw it,use links in the upper right corner.79 title 高校 雲 谷歌101的啟示 pdfkeywords 雲計算谷歌101 高校 雲 abs...
使用者行為分析研究之資料採集
使用者行為分析研究之資料採集 1.1使用者行為分析的重要性 使用者行為分析 訪問請求被完整的記錄下來了。1.4 採集系統之客戶端 採集系統的核心還是客戶端的採集指令碼,這裡我會貼出完整的採集指令碼以及測試頁面,的詳細解析我會在以後的部落格裡進行闡述。我的採集指令碼可以記錄使用者訪問的日誌,還能記錄使...