Skip to content

Commit b4d52a9

Browse files
author
Valentin Gerbey
committed
Redis mutex service with only set command
1 parent 50a79ad commit b4d52a9

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/Redis/RedisMutexService.php

+2-3
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ final class RedisMutexService implements MutexService
3838
public function __construct(Redis $client, int $lockLifetime = self::DEFAULT_LOCK_LIFETIME)
3939
{
4040
$this->client = $client;
41-
$this->lockOptions = (new SetOptions())->withTtl($lockLifetime);
41+
$this->lockOptions = (new SetOptions())->withTtl($lockLifetime)->withoutOverwrite();
4242
}
4343

4444
public function withLock(string $id, callable $code): Promise
@@ -48,12 +48,11 @@ function () use ($id, $code): \Generator
4848
{
4949
try
5050
{
51-
while (yield $this->client->has($id))
51+
while (!yield $this->client->set($id, 'lock', $this->lockOptions))
5252
{
5353
yield delay(self::LATENCY_TIMEOUT);
5454
}
5555

56-
yield $this->client->set($id, 'lock', $this->lockOptions);
5756
yield call($code);
5857
}
5958
finally

0 commit comments

Comments
 (0)