redis基礎結構 DICT

2022-09-05 03:27:10 字數 628 閱讀 5051

redis字典具dd有以下特點:

* 字典

* * 每個字典使用兩個雜湊表,用於實現漸進式 rehash

*/typedef struct dict dict;

/* * 雜湊表

*/typedef struct dictht dictht;

/* * 雜湊表節點

*/typedef struct dictentry v;

// 鏈往後繼節點

建立乙個比 ht[0]->table 更大的 ht[1]->table , size為大於used*2的2的指數, 開始值為4

將 ht[0]->table 中的所有鍵值對遷移到 ht[1]->table

將原有 ht[0] 的資料清空,並將 ht[1] 替換為新的 ht[0]

redis資料結構 dict

typedef struct dict dict 雜湊表結構,每個字典中含有兩個這樣的雜湊表結構,存在兩個的原因是因為我們為了控制雜湊表的負載因子在合理的範圍內時,可能需要rehash,rehash採用的 漸進式雜湊 this is our hash table structure.every di...

redis資料結構之dict 概要

1.移植使用 void zmalloc size t size void zcalloc size t size void zfree void ptr define random rand define snprintf snprintf s long long timeinmillisecond...

Redis原始碼 dict資料結構(實現)

本文分析的是src dict.c檔案。從結構上來說,可以分為 1.私有函式 以下劃線開頭的一般都是,一般都是一些輔助函式 2.公開api。從功能來說,可以分為 1.dict初始化 析構 2.元素操作 查詢 刪除 插入 替換 修改值 清空資料 3.遍歷dict,迭代器相關 比如需要持久化雜湊表的資料時...