Redis的數據結構簡述

1.SDS struct sdshdr { int len ; int alloc; int flag; char buf[]; } 2. link list typedef struct listNode {     struct listNode *prev;     struct listNode *next;     void *value; } listNode; typedef str
相關文章
相關標籤/搜索