今天我们来记一下压缩列表(ZIPLIST),压缩列表在Redis的五种数据结构中用的是最多的一个,可以从Redis(版本4.0)日记--数据类型和底层编码这篇日记中知道,使用压缩列表为底层编码数据结构的有list、zset、hash这三种数据类型,而且从版本3.2开始使用的quicklist,也是结合了ziplist和linkedlist两种数据结构来进行list优化的。
数据结构及详细解析全在图中了:放大观看更清晰哦
压缩列表数据结构?
<zlbytes> <zltail> <zllen> <entry> <entry> ... <entry> <zlend>
压缩列表里包括以上结构:
uint32_t zlbytes:记录整个压缩列表占用的字节数:在对整个压缩列表进行内存
重分配或者计算zlend时使用
uint32_t zltail:一个偏移量,记录压缩列表表尾节点距离压缩列表开始地址有
多少字节:用于计算表尾节点地址
uint16_t zllen:当小于uint16_max(65535)时可以直接表示压缩列表节点数量,
当大于uint16_max(65535)时,节点数量需要遍历整个压缩列
表才能得出
若干entry: 根据存储的内容决定
uint8_t zlend:固定值0xFF(255),用于标记压缩列表末端
复制
压缩列表节点数据结构?
/* We use this function to receive information about a ziplist entry.
* Note that this is not how the data is actually encoded, is just what we
* get filled by a function in order to operate more easily. */
typedef struct zlentry {
unsigned int prevrawlensize; /* Bytes used to encode the previos entry len*/
unsigned int prevrawlen; /* Previous entry len. */
unsigned int lensize; /* Bytes used to encode this entry type/len.
For example strings have a 1, 2 or 5 bytes
header. Integers always use a single byte.*/
unsigned int len; /* Bytes used to represent the actual entry.
For strings this is just the string length
while for integers it is 1, 2, 3, 4, 8 or
0 (for 4 bit immediate) depending on the
number range. */
unsigned int headersize; /* prevrawlensize + lensize. */
unsigned char encoding; /* Set to ZIP_STR_* or ZIP_INT_* depending on
the entry encoding. However for 4 bits
immediate integers this can assume a range
of values and must be range-checked. */
unsigned char *p; /* Pointer to the very start of the entry, that
is, this points to prev-entry-len field. */
} zlentry;
复制
文章转载自无限递归,如果涉嫌侵权,请发送邮件至:contact@modb.pro进行举报,并提供相关证据,一经查实,墨天轮将立刻删除相关内容。
评论
相关阅读
深入理解分布式锁:原理、应用与挑战
京东云开发者
40次阅读
2025-03-11 15:50:54
缓存监控治理在游戏业务的实践和探索
vivo互联网技术
38次阅读
2025-03-20 09:51:10
如何使用 RisingWave、Kafka 和 Redis 构建实时推荐引擎
RisingWave中文开源社区
37次阅读
2025-03-10 10:30:31
Redis 集群主备切换原因分析
wzf0072
30次阅读
2025-03-20 17:51:42
Redis Cluster集群模式:构建大规模高性能分布式存储系统
老王两点中
28次阅读
2025-03-17 09:00:28
Redis 高可用方案
天翼云开发者社区
25次阅读
2025-03-24 17:09:54
拼多多二面:高并发场景扣减商品库存如何防止超卖?
码哥跳动
23次阅读
2025-03-11 08:36:28
高并发场景下的库存管理,理论与实战能否兼得?
京东云开发者
15次阅读
2025-03-24 16:54:56
Redis Sentinel模式:构建高可用Redis集群
老王两点中
12次阅读
2025-03-14 09:01:04
Redis数据库——8种内存淘汰机制
编程Cookbook
10次阅读
2025-03-14 10:22:17