摘要: 字典的实现 哈希表 Redis 字典所使用的哈希表由 dict.h/dictht 结构定义: typedef struct dictht { // 哈希表数组 dictEntry **table; // 哈希表大小 unsigned long size; // 哈希表大小掩码,用于计算索引值 // 阅读全文
posted @ 2018-12-20 15:11 不学习就没有梦想 阅读(206) 评论(0) 推荐(0)
levels of contents