Redis-0x07-t_hash
数据类型Hash哈希表。
1 数据结构关系
数据类型 | 实现 | 编码方式 | 数据结构 |
---|---|---|---|
哈希表OBJ_HASH | t_hash | OBJ_ENCODING_ZIPLIST | ziplist |
dict |
2 迭代器
2.1 数据结构
c
1 |
|
2.2 初始化
c
1 |
|
2.3 迭代
c
1 |
|
3 编码转换
ziplist转换dict。
c
1 |
|
c
1 |
|
举个例子,假设键值对为:
json
1 |
|
3.1 ziplist编码
3.2 dict编码
Redis-0x07-t_hash
https://bannirui.github.io/2023/04/02/Redis-0x07-t-hash/