redis 是使用 C 语言编写的,但是 C 语言是没有字典这个数据结构的,因此 C 语言自己使用结构体来自定义一个字典结构 typedef struct redisDb src\server.h 中的 redis 数据库 数据结构 /* Redis database representation. There are multiple databases identified * by integers from 0 (the default database) up to the max c…