/
githubmirror
/
framework
Обзор
Документация
Войти
/
githubmirror
/
framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
13.x
src/Illuminate/Cache/DynamoDbLock.php
93 строки
2 KB
Taylor Otwell
port refresh locks to laravel 13
15 июн 2026, 23:57
15 июн 2026, 23:57
0a1f8c3
Код
Авторство
О чём код?
<?php namespace Illuminate\Cache; class DynamoDbLock extends Lock { /** * The DynamoDB client instance. * * @var \Illuminate\Cache\DynamoDbStore */ protected $dynamo; /** * Create a new lock instance. * * @param \Illuminate\Cache\DynamoDbStore $dynamo * @param string $name * @param int $seconds * @param string|null $owner */ public function __construct(DynamoDbStore $dynamo, $name, $seconds, $owner = null) { parent::__construct($name, $seconds, $owner); $this->dynamo = $dynamo; } /** * Attempt to acquire the lock. * * @return bool */ public function acquire() { if ($this->seconds > 0) { return $this->dynamo->add($this->name, $this->owner, $this->seconds); } return $this->dynamo->add($this->name, $this->owner, 86400); } /** * Attempt to refresh the lock for the given number of seconds. * * @param int|null $seconds * @return bool */ public function refresh($seconds = null) { $seconds ??= $this->seconds; if ($seconds <= 0) { $seconds = 86400; } return $this->dynamo->refreshIfOwned($this->name, $this->owner, $seconds); } /** * Release the lock. * * @return bool */ public function release() { if ($this->isOwnedByCurrentProcess()) { return $this->dynamo->forget($this->name); } return false; } /** * Release this lock in disregard of ownership. * * @return void */ public function forceRelease() { $this->dynamo->forget($this->name); } /** * Returns the owner value written into the driver for this lock. * * @return mixed */ protected function getCurrentOwner() { return $this->dynamo->get($this->name); } }