摘要: redis 中使用hash表实现字典:首先看hash表的实现 typedef struct dictht {//dictht hash桶存在于dict结构中 //每个具体table[i]中的节点数据类型是dictEntry 结构表示, 每个 dictEntry 结构都保存着一个键值对: // 哈希表 阅读全文
posted @ 2021-08-01 14:12 codestacklinuxer 阅读(126) 评论(0) 推荐(0) 编辑