Redis-SCAN-功能
閱讀本文約花費: 2 (分鐘)
主要参考这两篇: http://blog.csdn.net/u011510825/article/details/51859656 http://redis.io/commands/scan 实验如下:$ redis-cli -h [host] -p 8379 > smembers myset 1) "one" 2) "two" > sscan myset o* (error) ERR invalid cursor > sscan myset 0 match o* 1) "0" 2) 1) "one" > sscan myset 0 match * 1) "0" 2) 1) "one" 2) "two" > sscan myset 0 match * count 1 1) "2" 2) 1) "one" > sscan myset1 0 match "{'i': '[1-9][0-9][0-9]*'}" 1) "0" 2) 1) "{'i': '990', 'i2': '991'}"
Redis 集合命令 下表列出了 Redis 集合基本命令: 序号 命令及描述 1 SADD key member1 [member2] 向集合添加一个或多个成员 2 SCARD key 获取集合的成员数 3 SDIFF key1 [key2] 返回给定所有集合的差集 4 SDIFFSTORE destination key1 [key2] 返回给定所有集合的差集并存储在 destination 中 5 SINTER key1 [key2] 返回给定所有集合的交集 6 SINTERSTORE destination key1 [key2] 返回给定所有集合的交集并存储在 destination 中 7 SISMEMBER key member 判断 member 元素是否是集合 key 的成员 8 SMEMBERS key 返回集合中的所有成员 9 SMOVE source destination member 将 member 元素从 source 集合移动到 destination 集合 10 SPOP key 移除并返回集合中的一个随机元素 11 SRANDMEMBER key [count] 返回集合中一个或多个随机数 12 SREM key member1 [member2] 移除集合中一个或多个成员 13 SUNION key1 [key2] 返回所有给定集合的并集 14 SUNIONSTORE destination key1 [key2] 所有给定集合的并集存储在 destination 集合中 15 SSCAN key cursor [MATCH pattern] [COUNT count] 迭代集合中的元素
> smembers myset 1) "one" 2) "two" > sscan myset 0 match * count 1 1) "2" 2) 1) "one" > sscan myset 2 match * count 1 1) "3" 2) 1) "two" > sscan myset 3 match * count 1 1) "0" 2) (empty list or set)