Redis Sscan 命令

更新时间: 2019-07-07 15:54

Redis Sscan 命令用于迭代集合中键的元素。

语法

SSCAN key cursor [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 集合(Set)命令

The Science of Programming

The Science of Programming

David Gries / Springer / 1989-4-21 / USD 99.00

Describes basic programming principles and their step-by- step applications.Numerous examples are included.一起来看看 《The Science of Programming》 这本书的介绍吧!

JS 压缩/解压工具

JS 压缩/解压工具

在线压缩/解压 JS 代码

XML 在线格式化

XML 在线格式化

在线 XML 格式化压缩工具

正则表达式在线测试

正则表达式在线测试

正则表达式在线测试