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
相关文章
相关标签/搜索