[Cache] clarify RedisStore::evaluate()

This commit is contained in:
Nicolas Grekas 2021-07-12 12:42:37 +02:00
parent 18646891a3
commit 450d33ff3b

View File

@ -281,11 +281,10 @@ class RedisStore implements SharedLockStoreInterface
}
return $result;
return $this->redis->_instance($this->redis->_target($resource))->eval($script, array_merge([$resource], $args), 1);
}
if ($this->redis instanceof \Predis\ClientInterface) {
\assert($this->redis instanceof \Predis\ClientInterface);
try {
return $this->redis->eval(...array_merge([$script, 1, $resource], $args));
} catch (ServerException $e) {
@ -293,9 +292,6 @@ class RedisStore implements SharedLockStoreInterface
}
}
throw new InvalidArgumentException(sprintf('"%s()" expects being initialized with a Redis, RedisArray, RedisCluster or Predis\ClientInterface, "%s" given.', __METHOD__, get_debug_type($this->redis)));
}
private function getUniqueToken(Key $key): string
{
if (!$key->hasState(__CLASS__)) {