Redis字典
参考《Redis设计与实现》第四章 和 Redis6 源码
Redis的数据库是用字典来作为底层实现的,字典也是哈希键的底层实现之一。字典中每个键都是独一无二的。
Redis字典使用哈希表作为底层实现。
哈希表
Redis哈希表的结构如下
/* This is our hash table structure. Every dictionary has two of this as we
* implement incremental rehashing, for the old to the new
原创
2021-03-03 16:00:51 ·
231 阅读 ·
1 评论