use Illuminate\Support\Facades\Redis;
$cursor = '0'; // Start with initial cursor
do {
// Scan for keys with current cursor
list($cursor, $keys) = Redis::scan($cursor);
foreach ($keys as $key) {
echo "Key: $key\n";
}
} while ($cursor !== '0'); // Continue scanning until cursor is '0'
在Redis、集群中,如果你有很多key,建议扫描而不是key。 但是,您应该正确使用它。尝试使用这种方式。
参考: Laravel 和 redis 扫描