Set(无序不重复集合)
set中的值是不能重复的!
####################################################################################
127.0.0.1:6379> sadd xsyset “hello” // set集合中添加元素
(integer) 1
127.0.0.1:6379> sadd xsyset “hello_xsy”
(integer) 1
127.0.0.1:6379> sadd xsyset “hello_xsy1”
(integer) 1
127.0.0.1:6379> SMEMBERS xsyset // 查看指定set的所有值
1 ) “hello”
2 ) “hello_xsy1”
3 ) “hello_xsy”
127.0.0.1:6379> SISMEMBER xsyset hello // 判断某一个值是不是在set集合中!
(integer) 1
127.0.0.1:6379> SISMEMBER xsyset world
(integer) 0
####################################################################################
127.0.0.1:6379> scard xsyset // 获取set集合中的内容元素个数!
(integer) 3
127.0.0.1:6379> SREM xsyset hello // 移除set集合中的指定元素
(integer) 1
127.0.0.1:6379> SMEMBERS xsyset
1 ) “hello_xsy1”
2 ) “hello_xsy”
####################################################################################
####################################################################################
127.0.0.1:6379> SMEMBERS xsyset
1 ) “hello_xsy1”
2 ) “hello_xsy”
3 ) “hello_xsy2”
4 ) “hello_xsy5”
5 ) “hello_xsy3”
6 ) “hello_xsy4”
127.0.0.1:6379> SRANDMEMBER xsyset // 随机抽选出一个元素
“hello_xsy”
127.0.0.1:6379> SRANDMEMBER xsyset
“hello_xsy3”
127.0.0.1:6379> SRANDMEMBER xsyset
“hello_xsy4”
127.0.0.1:6379> SRANDMEMBER xsyset
“hello_xsy”
127.0.0.1:6379> SRANDMEMBER xsyset
“hello_xsy5”
127.0.0.1:6379> SRANDMEMBER xsyset
“hello_xsy5”
127.0.0.1:6379> SRANDMEMBER xsyset
“hello_xsy2”
127.0.0.1:6379> SRANDMEMBER xsyset 3 // 随机抽选出指定个数个元素
1 ) “hello_xsy”
2 ) “hello_xsy4”
3 ) “hello_xsy2”
127.0.0.1:6379> SRANDMEMBER xsyset 4
1 ) “hello_xsy1”
2 ) “hello_xsy”
3 ) “hello_xsy5”
4 ) “hello_xsy4”
####################################################################################
####################################################################################
127.0.0.1:6379> SMEMBERS xsyset
1 ) “hello_xsy”
2 ) “hello_xsy1”
3 ) “hello_xsy5”
4 ) “hello_xsy3”
5 ) “hello_xsy2”
6 ) “hello_xsy4”
127.0.0.1:6379> spop xsyset // 随机删除一些set集合中的元素!
“hello_xsy1”
127.0.0.1:6379> SMEMBERS xsyset
1 ) “hello_xsy”
2 ) “hello_xsy5”
3 ) “hello_xsy3”
4 ) “hello_xsy2”
5 ) “hello_xsy4”
####################################################################################
####################################################################################
127.0.0.1:6379> SMEMBERS xsy_set1
1 ) “hello_xsy3”
2 ) “hello_xsy1”
3 ) “hello_xsy4”
4 ) “hello_xsy2”
5 ) “hello_xsy5”
127.0.0.1:6379> SMEMBERS xsy_set2
1 ) “hello_world1”
2 ) “hello_world2”
127.0.0.1:6379> smove xsy_set1 xsy_set2 hello_xsy3 // 将一个指定的值,移动到另外一个set集合!
(integer) 1
127.0.0.1:6379> SMEMBERS xsy_set1
1 ) “hello_xsy1”
2 ) “hello_xsy4”
3 ) “hello_xsy2”
4 ) “hello_xsy5”
127.0.0.1:6379> SMEMBERS xsy_set2
1 ) “hello_xsy3”
2 ) “hello_world1”
3 ) “hello_world2”
####################################################################################
####################################################################################
127.0.0.1:6379> SMEMBERS set1
1 ) “b”
2 ) “a”
3 ) “d”
4 ) “c”
127.0.0.1:6379> SMEMBERS set2
1 ) “b”
2 ) “c”
127.0.0.1:6379> SDIFF set1 set2 // 集合1和集合2的不同(差集)
1 ) “a”
2 ) “d”
127.0.0.1:6379> SINTER set1 set2 // 集合1和集合2的相同 (交集)
1 ) “b”
2 ) “c”
127.0.0.1:6379> SUNION set1 set2 // 集合1和集合2(并集)
1 ) “c”
2 ) “d”
3 ) “b”
4 ) “a”
####################################################################################
微博,A用户将所有关注的人放在一个set集合中!将它的粉丝也放在一个集合中!
共同关注,共同爱好,二度好友,推荐好友!(六度分割理论)