Redis - Keys 命令



Redis KEYS 命令用于按匹配模式搜索键。

返回值

带有匹配模式的键列表(数组)。

语法

以下是 Redis KEYS 命令的基本语法。

redis 127.0.0.1:6379> KEYS PATTERN

示例

首先,在 Redis 中创建一个键并在其中设置一些值。

redis 127.0.0.1:6379> SET tutorial1 redis 
OK 
redis 127.0.0.1:6379> SET tutorial2 mysql 
OK 
redis 127.0.0.1:6379> SET tutorial3 mongodb 
OK 

现在,使用从关键字教程开始的键搜索 Redis。

redis 127.0.0.1:6379> KEYS tutorial* 
1) "tutorial3" 
2) "tutorial1" 
3) "tutorial2" 

若要获取 Redis 中可用的所有键的列表,请仅使用 *

redis 127.0.0.1:6379> KEYS * 
1) "tutorial3" 
2) "tutorial1" 
3) "tutorial2" 
redis_keys.htm
广告