多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
[TOC] ## Redis使用的版本 下载[6.2](https://github.com/redis/redis/tree/6.2)版本. 我使用的是国内github镜像地址:github.com.cnpmjs.org,速度比较快。 ``` git clone https://github.com.cnpmjs.org/redis/redis.git redis git checkout -b 6.2 remotes/origin/6.2 ``` 编译 ``` cd redis && make ``` 运行 ``` ./src/redis-server redis.conf ``` ## Redis模块 & 文件分类 网络模块 ``` ``` 数据结构 ``` ``` ## Redis流程