编程开源技术交流,分享技术与知识

网站首页 > 开源技术 正文

Yii2支持MySQL行锁(mysql行锁实现原理)

wxchong 2024-09-11 10:49:24 开源技术 8 ℃ 0 评论

Yii2 的 ActiveQuery 默认不支持 MySQL 的行锁。于是扩展了一下。 欢迎来搞。

Yii2 Lockable ActiveQuery

This package allows you to use pessimistic locking (select for update) when you work with ActiveRecord Query.

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require --prefer-dist amoydavid/yii2lockable-query "*"

or add

"amoydavid/yii2lockable-query": "*"

to the require section of your composer.json.

Usage

Set schema map for database connection

<?php
return [
 'class' => 'yii\db\Connection',
 'schemaMap' => [
 'mysql' => '\amoydavid\Yii2LockableQuery\mysql\Schema', // set up mysql schema
 ],
 'dsn' => 'mysql:host=localhost;dbname=yii',
 'username' => 'root',
 'password' => '',
 'charset' => 'utf8',
 // Schema cache options (for production environment)
 //'enableSchemaCache' => true,
 //'schemaCacheDuration' => 60,
 //'schemaCache' => 'cache',
]; 

Extend your ActiveRecord class via \amoydavid\Yii2LockableQuery\ActiveRecord

/**

* Class Sample

* @package common\models

*

*/

class Sample extends \amoydavid\Yii2LockableQuery\ActiveRecord { ... }

Use model locks in transaction.

$dbTransaction = Yii::$app->db->beginTransaction();
try {
 $model = Sample::find()->where(['id'=>1])->forUpdate()->one();
 $dbTransaction->commit();
} catch(\Exception $e) {
 $dbTransaction->rollBack();
 throw $e;
}

Tags:

本文暂时没有评论,来添加一个吧(●'◡'●)

欢迎 发表评论:

最近发表
标签列表