You are here

function lock_release_all in Redis 7.3

Same name and namespace in other branches
  1. 7 redis.lock.inc \lock_release_all()
  2. 7.2 redis.lock.inc \lock_release_all()
1 string reference to 'lock_release_all'
Redis_Lock_DefaultBackend::getLockId in lib/Redis/Lock/DefaultBackend.php
Default implementation from actual Drupal core.

File

./redis.lock.inc, line 51
Drupal core lock.inc replacement.

Code

function lock_release_all($lock_id = NULL) {
  return Redis_Lock::getBackend()
    ->lockReleaseAll($lock_id);
}