将用户发来的指令以RESP协议的形式存储在本地的AOF文件,重启Redis后执行此文件恢复数据 https://github.com/csgopher/go-redis 本文涉及以下文件: redis.conf:配置文件 aof:实现aof redis.conf appendonly yes appendfilename appendonly.aof aof/aof.go type CmdLine = [][]byte const ( aofQueueSize = 1 << 16 ) type payl…