doc[protocol]: 更新文档

This commit is contained in:
godotg
2022-09-27 21:55:08 +08:00
parent cecd458148
commit 90824ec168
2 changed files with 10 additions and 8 deletions
+4 -3
View File
@@ -25,14 +25,15 @@
Why is zfoo protocol ?
-----------
- Java二进制序列化速度最快的自定义格式框架,并且为序列化字节最少的框架,更加安全,可前后兼容
- 协议目前原生支持 C++ C# Java Go Javascript TypeScript GDScript Lua,可以轻易实现跨平台
- 协议原生支持 Java C++ C# Java Go Javascript TypeScript GDScript Lua
- 通用的分布式服务器协议实现,有其它语言的实现,可以轻易实现其它平台的的RPC,微服务
- 二进制序列化速度最快的自定义格式框架,并且为序列化字节最少的框架,更加安全,可前后兼容
- 单线程的Benchmark测试中,序列化和反序列化速度比Protobuf快50%,比Kryo快100%
. zfoo简介🚩
-----------
- **极致性能,天生异步,Actor设计思想,无锁化设计,基于Spring的MVC式用法的万能RPC框架**
- **极致性能,天生异步,Actor设计思想,无锁化设计,MVC式用法的万能RPC框架**
- **极致序列化**,原生集成目前二进制序列化和反序列化速度最快的 [zfoo protocol](protocol/README.md) 作为网络通讯协议
- **高可拓展性**,单台服务器部署,微服务部署,注册中心加集群部署,网关加集群部署,随意搭配
- **上能做游戏服务器框架,下能做应用网站服务器框架**
+6 -5
View File
@@ -24,17 +24,18 @@ English | [简体中文](./README.md)
Why is zfoo protocol ?
-----------
- The protocol currently supports Java C++ C# Go Java Javascript TypeScript GDScript Lua
- Universal distributed server protocol implementation, there are implementations in other languages, which can easily
implement RPC, servers, and microservices on other platforms
- The fastest custom format framework for Java binary serialization, with the fewest serialized bytes, more secure and
compatible
- The protocol currently supports C++ C# Go Java Javascript TypeScript GDScript Lua, which can easily achieve
cross-platform
- In the single-threaded benchmark test, serialization and deserialization are 50% faster than Protobuf and 100% faster
than Kryo
. Introduction of zfoo🚩
-----------
- **Extremely fast, asynchronous, Actor design pattern, lock-free design, RPC framework based on Spring**
- **Extremely fast, asynchronous, Actor design pattern, lock-free design, RPC framework based on Spring MVC**
- **Fastest serialization and deserialization**use [zfoo protocol](protocol/README.md) as a network protocol
- **High scalability**Single server deployment, microservice deployment, cluster deployment, gateway deployment
- **Can be used as a game server framework or website server framework.**
@@ -66,8 +67,8 @@ Perfect work development process, complete online solution
- [FAQ](./doc/FAQ.md)There are standard demo display and instructions in the test folder of each project directory,
which can be run directly
- [zfoo video tutorials](./doc/video-tutorial.md)In the continuous update, it is recommended to watch the hands-on instructional
video first.
- [zfoo video tutorials](./doc/video-tutorial.md)In the continuous update, it is recommended to watch the hands-on
instructional video first.
- [tank-game-server](https://github.com/zfoo-project/tank-game-server) Online game《The Fight of Tanks》,novice friendly,
difficulty 2 stars