当前位置:网站首页>Redis入门完整教程:集合详解
Redis入门完整教程:集合详解
2022-07-04 22:29:00 【谷哥学术】
集合(set)类型也是用来保存多个的字符串元素,但和列表类型不一
样的是,集合中不允许有重复元素,并且集合中的元素是无序的,不能通过
索引下标获取元素。如图2-22所示,集合user:1:follow包含
着"it"、"music"、"his"、"sports"四个元素,一个集合最多可以存储2 32 -1个元
素。Redis除了支持集合内的增删改查,同时还支持多个集合取交集、并
集、差集,合理地使用好集合类型,能在实际开发中解决很多实际问题。
2.5.1 命令
下面将按照集合内和集合间两个维度对集合的常用命令进行介绍。
1.集合内操作
(1)添加元素
sadd key element [element ...]
返回结果为添加成功的元素个数,例如:
127.0.0.1:6379> exists myset
(integer) 0
127.0.0.1:6379> sadd myset a b c
(integer) 3
127.0.0.1:6379> sadd myset a b
(integer) 0
(2)删除元素
srem key element [element ...]
返回结果为成功删除元素个数,例如:
127.0.0.1:6379> srem myset a b
(integer) 2
127.0.0.1:6379> srem myset hello
(integer) 0
(3)计算元素个数
scard key
scard的时间复杂度为O(1),它不会遍历集合所有元素,而是直接用
Redis内部的变量,例如:
127.0.0.1:6379> scard myset
(integer) 1
(4)判断元素是否在集合中
sismember key element
如果给定元素element在集合内返回1,反之返回0,例如:
127.0.0.1:6379> sismember myset c
(integer) 1
(5)随机从集合返回指定个数元素
srandmember key [count]
[count]是可选参数,如果不写默认为1,例如:
127.0.0.1:6379> srandmember myset 2
1) "a"
2) "c"
127.0.0.1:6379> srandmember myset
"d"
(6)从集合随机弹出元素
spop key
spop操作可以从集合中随机弹出一个元素,例如下面代码是一次spop
后,集合元素变为"d b a":
127.0.0.1:6379> spop myset
"c"
127.0.0.1:6379> smembers myset
1) "d"
2) "b"
3) "a"
需要注意的是Redis从3.2版本开始,spop也支持[count]参数。
srandmember和spop都是随机从集合选出元素,两者不同的是spop命令
执行后,元素会从集合中删除,而srandmember不会。
(7)获取所有元素
smembers key
下面代码获取集合myset所有元素,并且返回结果是无序的:
127.0.0.1:6379> smembers myset
1) "d"
2) "b"
3) "a"
smembers和lrange、hgetall都属于比较重的命令,如果元素过多存在阻
塞Redis的可能性,这时候可以使用sscan来完成,有关sscan命令2.7节会介
绍。
2.集合间操作
现在有两个集合,它们分别是user:1:follow和user:2:follow:
127.0.0.1:6379> sadd user:1:follow it music his sports
(integer) 4
127.0.0.1:6379> sadd user:2:follow it news ent sports
(integer) 4
(1)求多个集合的交集
sinter key [key ...]
例如下面代码是求user:1:follow和user:2:follow两个集合的交集,
返回结果是sports、it:
127.0.0.1:6379> sinter user:1:follow user:2:follow
1) "sports"
2) "it"
(2)求多个集合的并集
suinon key [key ...]
例如下面代码是求user:1:follow和user:2:follow两个集合的并集,
返回结果是sports、it、his、news、music、ent:
127.0.0.1:6379> sunion user:1:follow user:2:follow
1) "sports"
2) "it"
3) "his"
4) "news"
5) "music"
6) "ent"
(3)求多个集合的差集
sdiff key [key ...]
例如下面代码是求user:1:follow和user:2:follow两个集合的差集,
返回结果是music和his:
127.0.0.1:6379> sdiff user:1:follow user:2:follow
1) "music"
2) "his"
前面三个命令如图2-23所示。
(4)将交集、并集、差集的结果保存
sinterstore destination key [key ...]
suionstore destination key [key ...]
sdiffstore destination key [key ...]
集合间的运算在元素较多的情况下会比较耗时,所以Redis提供了上面
三个命令(原命令+store)将集合间交集、并集、差集的结果保存在
destination key中,例如下面操作将user:1:follow和user:2:follow两个集
合的交集结果保存在user:1_2:inter中,user:1_2:inter本身也是集合类
型:
127.0.0.1:6379> sinterstore user:1_2:inter user:1:follow user:2:follow
(integer) 2
127.0.0.1:6379> type user:1_2:inter
set
127.0.0.1:6379> smembers user:1_2:inter
1) "it"
2) "sports"
至此有关集合的命令基本已经介绍完了,表2-6给出集合常用命令的时
间复杂度,开发人员可以根据自身需求进行选择。
2.5.2 内部编码
集合类型的内部编码有两种:
·intset(整数集合):当集合中的元素都是整数且元素个数小于set-max-
intset-entries配置(默认512个)时,Redis会选用intset来作为集合的内部实
现,从而减少内存的使用。
·hashtable(哈希表):当集合类型无法满足intset的条件时,Redis会使
用hashtable作为集合的内部实现。
下面用示例来说明:
1)当元素个数较少且都为整数时,内部编码为intset:
127.0.0.1:6379> sadd setkey 1 2 3 4
(integer) 4
127.0.0.1:6379> object encoding setkey
"intset"
2.1)当元素个数超过512个,内部编码变为hashtable:
127.0.0.1:6379> sadd setkey 1 2 3 4 5 6 ... 512 513
(integer) 509
127.0.0.1:6379> scard setkey
(integer) 513
127.0.0.1:6379> object encoding listkey
"hashtable"
2.2)当某个元素不为整数时,内部编码也会变为hashtable:
127.0.0.1:6379> sadd setkey a
(integer) 1
127.0.0.1:6379> object encoding setkey
"hashtable"
边栏推荐
- NFT insider 64: e-commerce giant eBay submitted an NFT related trademark application, and KPMG will invest $30million in Web3 and metauniverse
- 繁華落盡、物是人非:個人站長該何去何從
- How diff are the contents of the same configuration item in different environments?
- 攻防世界 misc 高手进阶区 a_good_idea
- [the 2023 autumn recruitment of MIHA tour] open [the only exclusive internal push code of school recruitment eytuc]
- Shell script implements application service log warehousing MySQL
- Redis入门完整教程:事务与Lua
- In Linux, I call odspcmd to query the database information. How to output silently is to only output values. Don't do this
- String类中的常用方法
- Now MySQL cdc2.1 is parsing the datetime class with a value of 0000-00-00 00:00:00
猜你喜欢
Unity Xiuxian mobile game | Lua dynamic sliding function (specific implementation of three source codes)
Naacl-22 | introduce the setting of migration learning on the prompt based text generation task
The sandbox has reached a cooperation with digital Hollywood to accelerate the economic development of creators through human resource development
Google Earth Engine(GEE)——基于 MCD64A1 的 GlobFire 日常火灾数据集
新版判断PC和手机端代码,手机端跳转手机端,PC跳转PC端最新有效代码
共创软硬件协同生态:Graphcore IPU与百度飞桨的“联合提交”亮相MLPerf
Google Earth engine (GEE) - tasks upgrade enables run all to download all images in task types with one click
Serial port data frame
Redis入门完整教程:哈希说明
攻防世界 MISC 进阶区 Erik-Baleog-and-Olaf
随机推荐
How to send a reliable request before closing the page
蓝队攻防演练中的三段作战
页面关闭前,如何发送一个可靠请求
【lua】int64的支持
The overview and definition of clusters can be seen at a glance
High school physics: linear motion
The sandbox has reached a cooperation with digital Hollywood to accelerate the economic development of creators through human resource development
堆排序代码详解
攻防世界 MISC 进阶区 Ditf
【OpenGL】笔记二十九、抗锯齿(MSAA)
Now MySQL cdc2.1 is parsing the datetime class with a value of 0000-00-00 00:00:00
Wake up day, how do I step by step towards the road of software testing
Prosperity is exhausted, things are right and people are wrong: where should personal webmasters go
Talk about Middleware
leetcode 72. Edit distance edit distance (medium)
特征缩放 标准化 归一化
md5工具类
Redis入门完整教程:哈希说明
LOGO特训营 第二节 文字与图形的搭配关系
Shell script implements application service log warehousing MySQL