原理:
數(shù)據(jù)表中使用一個(gè)int類型的字段來存儲(chǔ)版本號(hào)绪氛,即該行記錄的版本號(hào)陆盘。更新數(shù)據(jù)時(shí),對(duì)比版本號(hào)是否一致
sql查詢代碼如下(偽代碼)
update `test_ver` set `name`="lili" and `ver`=2 where `id`=1 and `ver`=1
即在更新時(shí)的where查詢條件中荞胡,帶上之前查詢記錄時(shí)得到的版本號(hào)拼缝,如果其他線程已經(jīng)修改了該記錄娱局,則版本號(hào)勢必不會(huì)一致彰亥,則更新失敗
示例
數(shù)據(jù)表
假設(shè)有如下數(shù)據(jù)表
模型類
app\models\TestVer
該模型類咧七,重寫B(tài)aseActiveRecord類中的optimisticLock方法
聲明用于記錄版本號(hào)的字段
/**
* 樂觀鎖
* @return string
*/
public function optimisticLock()
{
return 'ver';
}
public function updateRecord(){
$ver = self::findOne(['id'=>1]);
$ver->name = "lili";
$res = $ver->update();
return $res;
}
updateRecord修改id為1的記錄
控制器
控制器中調(diào)用updateRecord方法
public function actionVersion(){
$testVer = new TestVer();
$res = $testVer->updateRecord();
return $this->render('version');
}
Yii Debugger結(jié)果
查看database選項(xiàng),可以查看到實(shí)際執(zhí)行的sql語句任斋。
有一條語句如下
UPDATE `test_ver` SET `name`='lili', `ver`='2' WHERE (`id`='1') AND (`ver`='1')
Yii樂觀鎖實(shí)現(xiàn)原理
實(shí)現(xiàn)原理在yii\db\BaseActiveRecord::updateInteranl()方法
參考 http://www.digpage.com/lock.html
protected function updateInternal($attributes = null)
{
if (!$this->beforeSave(false)) {
return false;
}
// 獲取等下要更新的字段及新的字段值
$values = $this->getDirtyAttributes($attributes);
if (empty($values)) {
$this->afterSave(false, $values);
return 0;
}
// 把原來ActiveRecord的主鍵作為等下更新記錄的條件继阻,
// 也就是說,等下更新的废酷,最多只有1個(gè)記錄瘟檩。
$condition = $this->getOldPrimaryKey(true);
// 獲取版本號(hào)字段的字段名,比如 ver
$lock = $this->optimisticLock();
// 如果 optimisticLock() 返回的是 null澈蟆,那么墨辛,不啟用樂觀鎖。
if ($lock !== null) {
// 這里的 $this->$lock 趴俘,就是 $this->ver 的意思睹簇;
// 這里把 ver+1 作為要更新的字段之一。
$values[$lock] = $this->$lock + 1;
// 這里把舊的版本號(hào)作為更新的另一個(gè)條件
$condition[$lock] = $this->$lock;
}
$rows = $this->updateAll($values, $condition);
// 如果已經(jīng)啟用了樂觀鎖寥闪,但是卻沒有完成更新太惠,或者更新的記錄數(shù)為0;
// 那就說明是由于 ver 不匹配疲憋,記錄被修改過了凿渊,于是拋出異常。
if ($lock !== null && !$rows) {
throw new StaleObjectException('The object being updated is outdated.');
}
$changedAttributes = [];
foreach ($values as $name => $value) {
$changedAttributes[$name] = isset($this->_oldAttributes[$name]) ? $this->_oldAttributes[$name] : null;
$this->_oldAttributes[$name] = $value;
}
$this->afterSave(false, $changedAttributes);
return $rows;
}
從上面的代碼中,我們不難得出:
- 當(dāng) optimisticLock() 返回 null 時(shí)埃脏,樂觀鎖不會(huì)被啟用搪锣。
- 版本號(hào)只增不減。
- 通過樂觀鎖的條件有2個(gè)彩掐,一是主鍵要存在淤翔,二是要能夠完成更新。
- 當(dāng)啟用樂觀鎖后佩谷,只有下列兩種情況會(huì)拋出 StaleObjectException 異常:
- 當(dāng)記錄在被別人刪除后旁壮,由于主鍵已經(jīng)不存在,更新失敗谐檀。
- 版本號(hào)已經(jīng)變更抡谐,不滿足更新的第二個(gè)條件。