1、sadd key number[number.....] 添加key和值
2、scard key 查询key的总值
3、smembers key 返回key中的值
4、sismember key number 查询key中number是否存在,存在返回1,不存在返回0
5、srandmember key [count] 返回集合中count个随机数
6、srem key number [number....] 移除key中number值
7、spop key [count] 移除并返回count个数,用于抽奖
8、smove source destination number 将number值移除从source到destination的集合
9、sdiff key [key] 比较两个key的差集
sdiffstore destination key [key] 将两个key比较结果存放到destination中
10、sinter key [key] 比较两个key的交集
sinterstore destination key [key] 将两个key比较结果存放到destination中
11、sunion key [key] 比较两个key的并集
sunionstore destination key [key] 将两个key比较结果存放到destination中