redis src 目录组织结构

redis src 目录描述

  • sds.c/h: A C dynamic string library. 动态字符串库
  • adlist.c/h: A generic doubly linked list. 双端链表
  • dict.c/h: Hash tables. 哈希表
  • ae.c/h: A simple event-driven programming library. 事件驱动库
  • anet.c/h: is a library to use POSIX networking in a simpler way compared to the raw interface exposed by the kernel. POSIX TCP 网络库
原文地址:https://www.cnblogs.com/newber/p/13345511.html