keys 命令/方法/函数

Description

Returns the keys that match a certain pattern.

返回某种计算模式取得的KEYS。


Parameters

STRING: pattern, using '*' as a wildcard.

STRING:计算符


Return value

Array of STRING: The keys that match a certain pattern.


Example

$allKeys = $redis->keys('*');   // all keys will match this. 将会返回所有的key

$keyWithUserPrefix = $redis->keys('user*'); //返回user打头的key,相当于模糊搜索。


注意:

数据量较大的时候,慎用keys("*"),因为它会返回全部的key,会严重影响性能。