mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-11 19:20:01 +08:00
113 lines
3.4 KiB
PHP
113 lines
3.4 KiB
PHP
<?php
|
||
/**
|
||
* @link http://www.yiiframework.com/
|
||
* @copyright Copyright (c) 2008 Yii Software LLC
|
||
* @license http://www.yiiframework.com/license/
|
||
*/
|
||
|
||
namespace yii\mutex;
|
||
|
||
use Yii;
|
||
use yii\base\Component;
|
||
|
||
/**
|
||
* Mutex component allows mutual execution of the concurrent processes, preventing "race conditions".
|
||
* This is achieved by using "lock" mechanism. Each possibly concurrent thread cooperates by acquiring
|
||
* the lock before accessing the corresponding data.
|
||
*
|
||
* Usage example:
|
||
*
|
||
* ```
|
||
* if ($mutex->acquire($mutexName)) { |