From 90824ec1683deb6fe2a0c07376b5eee593251486 Mon Sep 17 00:00:00 2001 From: godotg Date: Tue, 27 Sep 2022 21:55:08 +0800 Subject: [PATCH] =?UTF-8?q?doc[protocol]:=20=E6=9B=B4=E6=96=B0=E6=96=87?= =?UTF-8?q?=E6=A1=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 7 ++++--- README_EN.md | 11 ++++++----- 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 71ca5bf5..960e65eb 100644 --- a/README.md +++ b/README.md @@ -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) 作为网络通讯协议 - **高可拓展性**,单台服务器部署,微服务部署,注册中心加集群部署,网关加集群部署,随意搭配 - **上能做游戏服务器框架,下能做应用网站服务器框架** diff --git a/README_EN.md b/README_EN.md index 87e06f27..d8de6bb6 100644 --- a/README_EN.md +++ b/README_EN.md @@ -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