Lock.php 633 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. /**
  3. * Lock backend singleton handling.
  4. */
  5. class Redis_Lock {
  6. /**
  7. * @var Redis_Lock_BackendInterface
  8. */
  9. private static $instance;
  10. /**
  11. * Get actual lock backend.
  12. *
  13. * @return Redis_Lock_BackendInterface
  14. */
  15. public static function getBackend()
  16. {
  17. if (!isset(self::$instance)) {
  18. $className = Redis_Client::getClass(Redis_Client::REDIS_IMPL_LOCK);
  19. self::$instance = new $className(
  20. Redis_Client::getClient(),
  21. Redis_Client::getDefaultPrefix('lock')
  22. );
  23. }
  24. return self::$instance;
  25. }
  26. }