From c0de65a8aaed3f26433fdd437ddf1ce2de2e08ba Mon Sep 17 00:00:00 2001 From: fuxiao <576101059@qq.com> Date: Thu, 19 Dec 2024 10:34:37 +0800 Subject: [PATCH] update README.md --- README.md | 35 +++++++++++++++++++++++++---------- 1 file changed, 25 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index e0c636c..f6800a1 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# due 一站式分布式游戏服务器解决方案 +# due 基于Go语言开发的高性能分布式游戏服务器框架 [![Build Status](https://github.com/dobyte/due/workflows/Go/badge.svg)](https://github.com/dobyte/due/actions) [![goproxy](https://goproxy.cn/stats/github.com/dobyte/due/v2/badges/download-count.svg)](https://goproxy.cn/stats/github.com/dobyte/due/badges/download-count.svg) @@ -10,8 +10,9 @@ ### 1.介绍 -due是一款基于Go语言开发的轻量级分布式游戏服务器框架。 +due是一款基于Go语言开发的轻量级、高性能分布式游戏服务器框架。 其中,模块设计方面借鉴了[kratos](https://github.com/go-kratos/kratos)的模块设计思路,旨在为游戏服务器开发提供完善、高效、标准化的解决方案。 +框架自创建至今已在多个企业级游戏项目中上线实践过,稳定性有充分的保障。 ![架构图](architecture.jpg) @@ -372,7 +373,7 @@ func greetHandler(ctx node.Context) { log.Info(req.Message) res.Code = codes.OK.Code() - res.Message = fmt.Sprintf("I'm server, and the current time is: %s", xtime.Now().Format(xtime.DatetimeLayout)) + res.Message = fmt.Sprintf("I'm server, and the current time is: %s", xtime.Now().Format(xtime.DateTime)) } ``` @@ -489,7 +490,7 @@ func doPushMessage(conn *client.Conn) { err := conn.Push(&cluster.Message{ Route: 1, Data: &greetReq{ - Message: fmt.Sprintf("I'm client, and the current time is: %s", xtime.Now().Format(xtime.DatetimeLayout)), + Message: fmt.Sprintf("I'm client, and the current time is: %s", xtime.Now().Format(xtime.DateTime)), }, }) if err != nil { @@ -667,16 +668,30 @@ throughput (TPS) : 128969 9. 缓存组件 * redis: github.com/dobyte/due/cache/redis/v2 -### 14.详细示例 - -更多详细示例请点击[due-examples](https://github.com/dobyte/due-examples) - -### 15.其他客户端 +### 14.其他客户端 * [due-client-ts](https://github.com/dobyte/due-client-ts) * [due-client-shape](https://github.com/dobyte/due-client-shape) -### 16.交流与讨论 +### 15.详细示例 + +- [due-examples](https://github.com/dobyte/due-examples) +- [due-chat](https://github.com/dobyte/due-chat) + +### 16.三方示例 + +