youngyezi/mutex

Redis mutex for Lumen,Lumen 分布式锁

v1.0.0 2018-12-27 07:02 UTC

This package is auto-updated.

Last update: 2024-04-28 17:00:29 UTC


README

redis 分布式锁

install

composer require youngyezi/mutex 

usge

use Youngyezi\Mutex\Mutex;


$mutex = new Mutex();

if( $mutex->lock("test") ) {

    //do something
    
    ...
    
    $mutex->unlock("test");
}