Redis - Set Sscan 命令



Redis SSCAN 命令迭代存储在指定键处的集合的元素。

返回值

数组答复。

语法

以下为 Redis SSCAN 命令的基本语法。

redis 127.0.0.1:6379> SSCAN KEY [MATCH pattern] [COUNT count]

示例

redis 127.0.0.1:6379> SADD myset1 "hello" 
(integer) 1 
redis 127.0.0.1:6379> SADD myset1 "hi" 
(integer) 1 
redis 127.0.0.1:6379> SADD myset1 "bar" 
(integer) 1 
redis 127.0.0.1:6379> sscan myset1 0 match h* 
1) "0" 
2) 1) "hello" 
   2) "h1"
redis_sets.htm
广告