压缩列表

数据结构
type ziplist {
zlbytes uint32
zltail uint32
zllen uint16
entry []struct{
previous_entry_length []byte
encoding
content
}
zlend uint8
}entry 的范围
entry 的结构
entry 的 previous_entry_length
entry 的 encoding
content 的数据类型问题
content 的 bytes 长度问题

content 的数字大小问题

连锁更新
Last updated