Latest web development tutorials

Redis Sscan command

Redis set (Set)

Redis Sscan command iteration set for key elements.

grammar

redis Sscan basic command syntax is as follows:

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

Available versions

> = 1.0.0

return value

Array list.

Examples

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 (Set)