You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if ($this->redisinstanceof \Predis\ClientInterface && $this->redis->getConnection() instanceof ClusterInterface) {
147
-
CacheItem::log(
148
-
$this->logger,
149
-
'Cluster on Predis does not support RENAME so there is a risk of race conditions on tag invalidation, please use phpredis instead.'
150
-
);
147
+
CacheItem::log($this->logger, 'Cluster on Predis does not support RENAME so there is a risk of race conditions on tag invalidation, use phpredis instead.');
151
148
$movedTagSetIds = $tagIds;
152
149
} else {
153
150
$movedTagSetIds = $this->renameKeys($tagIds);
@@ -179,13 +176,13 @@ protected function doInvalidate(array $tagIds): bool
179
176
/**
180
177
* Rename several keys in order to be able to operate on them without risk of race conditions.
181
178
*
182
-
* Filters out keys that does not exists before returning new keys.
179
+
* Filters out keys that does not exist before returning new keys.
183
180
*
184
181
* @see https://redis.io/commands/rename
185
182
*
186
-
* @param array $ids the Orginal cache id's
183
+
* @param array $ids The original cache ids
187
184
*
188
-
* @return array filtered list of the valid moved keys (only those that existed)
185
+
* @return array Filtered list of the valid moved keys (only those that existed)
0 commit comments