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 掃描
#