You are here

function lock_release_all in Redis 7.2

Same name and namespace in other branches
  1. 7.3 redis.lock.inc \lock_release_all()
  2. 7 redis.lock.inc \lock_release_all()
1 string reference to 'lock_release_all'
Redis_Lock_Backend_Default::getLockId in lib/Redis/Lock/Backend/Default.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);
}