File tree 2 files changed +10
-0
lines changed
2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change
1
+ 实现 Memcached 编解码器
2
+ ====
3
+
4
+
5
+ 当想要实现一个给定协议的编解码器,我们应该花一些事件来了解它的运作原理。通常情况下,协议本身都有一些详细的记录。在这里你会发现多少细节?幸运的是 Memcached 的二进制协议可以很好的扩展。
6
+ 在 RFC 中有相应的规范,可以在 < https://code.google.com/p/Memcached/wiki/MemcacheBinaryProtocol > 找到 。
7
+
8
+ 我们不会实现 Memcached 的所有命令,只会实现三种操作:SET,GET 和 DELETE。这样做事为了让事情变得简单。
9
+
Original file line number Diff line number Diff line change @@ -93,6 +93,7 @@ This is the summary of my book.
93
93
* 高级主题
94
94
* [实现自定义的编解码器](ADVANCED TOPICS/Implement a custom codec.md)
95
95
* [编解码器的范围](ADVANCED TOPICS/Scope of the codec.md)
96
+ * [实现 Memcached 编解码器](ADVANCED TOPICS/Implementing the Memcached codec.md)
96
97
* [EventLoop 和线程模型](ADVANCED TOPICS/EventLoop and thread model.md)
97
98
* [用例1:Droplr Firebase 和 Urban Airship](ADVANCED TOPICS/Droplr Firebase and Urban Airship.md)
98
99
* [用例2:Facebook 和 Twitter](ADVANCED TOPICS/Facebook and Twitter.md)
You can’t perform that action at this time.
0 commit comments