Redis protocol:修订历史

跳到导航 跳到搜索

差异选择:选中要对比的版本的单选按钮,按Enter键或下方的按钮。
说明:(当前)=与最后版本之间的差异,(之前)=与上一版本之间的差异,=小编辑。

2024年9月26日 (星期四)

  • 当前之前 09:582024年9月26日 (四) 09:58阿奔 讨论 贡献 727字节 +727 创建页面,内容为“Redis serialization protocol specification === Network layer === A client connects to a Redis server by creating a TCP connection to its port (the default is 6379). 客户端和服务器发送的命令或数据以 \r\n (CRLF)结尾。 === RESP protocol description === ==== Simple strings ==== * status reply: +, e.g +OK * error reply: -, e.g -ERR unknown command 'hello' * integer reply: :, e.g :5 * NULL: $-1 ==== Bulk Reply ==== $<字节数量> <数据>…”