class SemaphoreStore implements StoreInterface
SemaphoreStore is a StoreInterface implementation using Semaphore as store engine.
static bool | isSupported() Returns whether or not the store is supported. | |
__construct() | ||
save(Key $key) Stores the resource if it's not locked by someone else. | ||
waitAndSave(Key $key) Waits until a key becomes free, then stores the resource. | ||
delete(Key $key) Removes a resource from the storage. | ||
putOffExpiration(Key $key, $ttl) Extends the ttl of a resource. | ||
bool | exists(Key $key) Returns whether or not the resource exists in the storage. |
Returns whether or not the store is supported.
bool |
Stores the resource if it's not locked by someone else.
Key | $key |
LockConflictedException |
Waits until a key becomes free, then stores the resource.
If the store does not support this feature it should throw a NotSupportedException.
Key | $key |
LockConflictedException | |
NotSupportedException |
Removes a resource from the storage.
Key | $key |
Extends the ttl of a resource.
If the store does not support this feature it should throw a NotSupportedException.
Key | $key | |
$ttl |
LockConflictedException | |
NotSupportedException |
Returns whether or not the resource exists in the storage.
Key | $key |
bool |
© 2004–2017 Fabien Potencier
Licensed under the MIT License.
https://api.symfony.com/4.1/Symfony/Component/Lock/Store/SemaphoreStore.html