这篇教程Redis Sscan 命令写得很实用,希望能帮到您。 Redis Sscan 命令用于迭代集合中键的元素。 语法 redis Sscan 命令基本语法如下: SSCAN key cursor [MATCH pattern] [COUNT count] 可用版本>= 1.0.0 返回值数组列表。 实例redis 127.0.0.1:6379> SADD myset1 "hello"(integer) 1redis 127.0.0.1:6379> SADD myset1 "hi"(integer) 1redis 127.0.0.1:6379> SADD myset1 "bar"(integer) 1redis 127.0.0.1:6379> sscan myset1 0 match h*1) "0"2) 1) "hello" 2) "h1" Redis Sunionstore 命令 Redis Zadd 命令 |