1
0
mirror of https://github.com/skywind3000/kcp.git synced 2025-04-28 16:10:14 +08:00

Updated KCP Best Practice (markdown)

Linwei 2017-09-04 22:11:32 +08:00
parent 0a64d59f2b
commit 0bdd5b401d

@ -33,3 +33,9 @@ P3 = (3, 2, 1)
#### 避免缓存积累延迟
不管是 TCP/KCP信道能力在那里放着让你没法无限制的调用 send请阅读“[如何避免缓存积累延迟](https://github.com/skywind3000/kcp/wiki/Flow-Control-for-Users)” 这篇 wiki。
#### 协议栈分层组装
不要试图将任何加密或者 FEC相关代码实现到 KCP里面请实现成不同协议单元并组装成你的协议栈
具体请看:[协议栈分层组装](https://github.com/skywind3000/kcp/wiki/Network-Layer)