redis的对象系统

42 阅读1分钟
  • string
    • long
    • sds
    • embstr
    • raw
  • list
    • zipList
    • dLinkedList
  • hash
    • dict
    • zipList
  • set
    • intSet
    • dict
  • zset
    • zipList
    • dict
    • skipList
graph TD
string --> long
string --> sds
string --> embstr
string --> raw

list --> zipList
list --> dLinkedList

hash --> zipList
hash --> dict

set --> intSet
set --> dict

zset --> zipList
zset --> dict
zset --> skipList