Redis数据结构的实现

数据类型与数据结构的关系

  1. String -> SDS

  2. List -> quicklist

  3. Hash -> 压缩列表、哈希表

  4. Set -> 哈希表或整数集合

  5. Zset -> 压缩列表或跳表