2.3数据结构和内部编码
graph LR
A[key] --> B[string]
B[string] --> b1[raw]
B[string] --> b2[int]
B[string] --> b3[embstr]
A[key] --> C[hash]
C[hash] --> c1[hashtable]
C[hash] --> c2[ziplist]
A[key] --> D[list]
D[list] --> d1[linkedlist]
D[list] --> d2[ziplist]
A[key] --> E[set]
E[set] --> e1[hashtable]
E[set] --> e2[intset]
A[key] --> F[zset]
F[zset] --> f1[skiplist]
F[zset] --> f2[ziplist]Last updated