我在php中使用此代码获得了相似的密钥。
$cache = new Redis();
$cache->connect($this->host, $this->port);
$allKeys = $cache->keys($key);
这是我的输出
Array
(
[0] => detail_2
[1] => detail_1
[2] => detail_5
[3] => detail_6
)
这里是如何对这些键进行排序的,我正在使用SET方法存储键。
我尝试用这种方法对$ cache-> sort($ key)进行排序,但是对我没有帮助。