hope/locker

处理锁

v2.1.0 2017-04-13 14:21 UTC

This package is not auto-updated.

Last update: 2024-09-28 15:59:56 UTC


README

Test passing Latest Stable Version

用法

$locker = new FileLocker('large-process', ['lockDir' => '/tmp/lock']);
if ($locker->isLocked()) {
    die('Already locked');
}

$locker->lock();
... some code ...
$locker->unlock();