cognizo / redis-mutex
A simple Redis-backed mutex lock.
Installs: 54 800
Dependents: 0
Suggesters: 0
Security: 0
Stars: 7
Watchers: 8
Forks: 1
Open Issues: 0
Requires
- php: >=5.3.0
- colinmollenhour/credis: 1.2
This package is not auto-updated.
Last update: 2025-03-25 06:28:37 UTC
README
RedisMutex is a simple Redis-backed distributed mutex for PHP.
Basic Usage
<?php
use Cognizo\RedisMutex\Lock;
if (Lock::get('myLock'))
{
// Do something exclusively
Lock::release('myLock');
}
else
{
echo "Couldn't get exclusive lock!";
}
You can also wait for a lock to be released:
// Wait up to 30 seconds for 'myLock' to become available
Lock::get('myLock', 30);
Specifying the Redis connection:
define('REDIS_PATH', 'tcp://127.0.0.1:6379');
// Or
define('REDIS_HOST', '127.0.0.1');
define('REDIS_PORT', 6379);
Install
Install the cognizo/redis-mutex package with Composer.