sql >> データベース >  >> NoSQL >> Redis

Laravelとredisのスキャン

    ありがとう@martinczerwiHereは非再帰バージョンです:

    function scanAllForMatch($pattern)
    {
        $cursor = 0;
        do {
            list($cursor, $keys) = Redis::scan($cursor, 'match', $pattern);
            foreach ($keys as $key) {
                yield $key;
            }
        } while ($cursor);
    }
    


    1. Redisを使用してパターンに一致するキーをアトミックに削除する方法

    2. Node.js、Mongoがデータを検索して返す

    3. mongoDBでのarrayFiltersパラメーターのしくみ

    4. MongoDBネストOR/ANDどこ?