neovg / phpredis-lock
Simple mutex locking class with support for TTL using PHPRedis as backend.
Installs: 8 498
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
Requires
- php: >=7.4
- ext-json: *
- ext-redis: *
- cakephp/chronos: ^1.0 || ^2.0
- florianwolters/component-util-singleton: 0.3.*
- neovg/php-struct: ^1.4
Requires (Dev)
- ext-pcntl: *
- phpunit/phpunit: ^8
This package is auto-updated.
Last update: 2025-03-29 00:48:04 UTC
README
Simple mutex locking class with support for TTL using PHPRedis as backend.
Installation
composer require neovg/phpredis-lock
Setup
\NeoVg\PhpRedisLock\Lock::getInstance()->setConfig( (new \NeoVg\PhpRedisLock\ConfigStruct()) ->withHost('127.0.0.1') ->withPort(6379) ->withDatabase(11) );
Usage
Acquire and release
if (!\NeoVg\PhpRedisLock\Lock::getInstance()->acquire('name')) { echo 'could not acquire lock'; } if (!\NeoVg\PhpRedisLock\Lock::getInstance()->release('name')) { echo 'could not release lock'; }
Non blocking acquire
\NeoVg\PhpRedisLock\Lock::getInstance()->acquire('name', 0);
Custom wait time (120 seconds)
\NeoVg\PhpRedisLock\Lock::getInstance()->acquire('name', 120);
TTL (60 seconds)
\NeoVg\PhpRedisLock\Lock::getInstance()->acquire('name', null, 60);
Check if already acquired (by this process)
\NeoVg\PhpRedisLock\Lock::getInstance()->isAcquired('name');
Check if already locked (by another process)
\NeoVg\PhpRedisLock\Lock::getInstance()->isLocked('name');
Get info about existing lock
$lockInfo = \NeoVg\PhpRedisLock\Lock::getInstance()->get('name;);