Skip to content

Commit bcbf5b8

Browse files
committed
Count of keys per iteration is set to default
1 parent 0bc448e commit bcbf5b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Phpfastcache/Drivers/Rediscluster/Driver.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ protected function driverReadAllKeys(string $pattern = '*'): iterable
129129
$i = 0;
130130
$pattern = $pattern === '' ? '*' : $pattern;
131131
do {
132-
$result[] = $this->instance->scan($i, $master, $pattern, 10);
132+
$result[] = $this->instance->scan($i, $master, $pattern);
133133
if (\count($result) > ExtendedCacheItemPoolInterface::MAX_ALL_KEYS_COUNT) {
134134
break;
135135
}

0 commit comments

Comments
 (0)