讀REDIS資料結構

來源:互聯網
上載者:User

標籤:style   blog   color   資料   問題   io   

一.DICT

主要有兩個問題:

1.散列衝突,解決辦法是拉鏈法

typedef struct dictEntry {    void *key;    union {        void *val;        uint64_t u64;        int64_t s64;    } v;    struct dictEntry *next;} dictEntry;

next欄位向後拉鏈

2.擴容時候的rehash,做類似於copy on write

typedef struct dict {    dictType *type;    void *privdata;    dictht ht[2];    int rehashidx; /* rehashing not in progress if rehashidx == -1 */    int iterators; /* number of iterators currently running */} dict;

ht[0] 是儲存了沒擴容時候的資料,ht[1]儲存擴容以後的資料。如果在需要擴容的時候,任何對雜湊表的操作都會從ht[0]中找到一個key rehash以後放到ht[1],逐漸把ht[0]中的資料放到ht[1],當ht[0]中全部rehash完以後,釋放空間,ht[0]指向ht[1]。

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.