redis系列筆記之數據結構SDS

redis的功能就很少作介紹了,本系列文章重點是從源碼角度揣度其設計思想,另外全部的源碼都是基於redis3.0.7版的開源包redis 今天就說一說其底層用於存儲字符串的數據結構SDS,話很少少先把關鍵源碼粘出來數組 typedef char *sds; struct sdshdr {     unsigned int len;     unsigned int free;     char b
相關文章
相關標籤/搜索