标签: reids

1 篇文章

Redis 链表实现
Redis封装了链表,下面看redis如何实现的链表typedef struct listNode{     struct listNode *prev;     struct listNode *next; …