How to use SCAN with the MATCH option in Predis

前端 未结 2 1952
爱一瞬间的悲伤
爱一瞬间的悲伤 2021-02-02 01:08

I have previously used the KEYS command to search for keys matching a certain pattern in my Redis database. Since Redis 2.8, the SCAN command seems to be preferred over KE

2条回答
  •  长发绾君心
    2021-02-02 02:05

    Maybe this is helpful for other Predis beginners and you're coming from a PHP/MySQL background like me you can use this:

    foreach (new Iterator\HashKey($client, $pattern) as $index => $value) {
        ...
    }
    

    When you previously generated an array dataset with $client->hmset($index, $array).

提交回复
热议问题