From 47f8af7ca1601997b036652fc329b58384645200 Mon Sep 17 00:00:00 2001 From: antao Date: Sat, 14 Dec 2024 01:17:49 +0800 Subject: [PATCH] Update README --- README.md | 4 ++-- README.zh-CN.md | 2 +- README.zh-TW.md | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index f9f45a9aa9..0e10d7d37c 100755 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ English | [简体中文](./README.zh-CN.md) | [繁體中文](./README.zh-TW.md) ### Overview -**Drogon** is a C++17/20 based HTTP application framework. Drogon can be used to easily build various types of web application server programs using C++. **Drogon** is the name of a dragon in the American TV series "Game of Thrones" that I really like. +**Drogon** is a C++17/20 based HTTP application framework. Drogon can be used to easily build various types of web application server programs using C++. **Drogon** is the name of a dragon from the American TV series *Game of Thrones*, which I really enjoy. Drogon is a cross-platform framework, It supports Linux, macOS, FreeBSD, OpenBSD, HaikuOS, and Windows. Its main features are as follows: @@ -183,7 +183,7 @@ As you can see, users can use the `HttpController` to map paths and parameters a In addition, you can also find that all handler interfaces are in asynchronous mode, where the response is returned by a callback object. This design is for performance reasons because in asynchronous mode the drogon application can handle a large number of concurrent requests with a small number of threads. -After compiling all of the above source files, we get a very simple web application. This is a good start. **For more information, please visit the [wiki](https://github.com/an-tao/drogon/wiki/ENG-01-Overview)** +After compiling all of the above source files, we get a very simple web application. This is a good start. **For more information, please visit the [documentation](https://drogonframework.github.io/drogon-docs/#/) on GitHub**. ## Cross-compilation diff --git a/README.zh-CN.md b/README.zh-CN.md index 4b74b68f54..e048eca3ee 100755 --- a/README.zh-CN.md +++ b/README.zh-CN.md @@ -186,7 +186,7 @@ class User : public drogon::HttpController 另外,你可以发现前面所有的处理函数接口都是异步的,处理器的响应是通过回调对象返回的。这种设计是出于对高性能的考虑,因为在异步模式下,可以使用少量的线程(比如和处理器核心数相等的线程)处理大量的并发请求。 -编译上述的所有源文件后,我们得到了一个非常简单的web应用程序,这是一个不错的开始。**请访问[wiki](https://github.com/an-tao/drogon/wiki/CHN-01-概述)** +编译上述的所有源文件后,我们得到了一个非常简单的web应用程序,这是一个不错的开始。**请访问GitHub上的[文档](https://drogonframework.github.io/drogon-docs/#/CHN/CHN-01-%E6%A6%82%E8%BF%B0)** ## 贡献方式 diff --git a/README.zh-TW.md b/README.zh-TW.md index a35b19946b..036b94c243 100644 --- a/README.zh-TW.md +++ b/README.zh-TW.md @@ -186,7 +186,7 @@ class User : public drogon::HttpController 另外,你可以發現前面所有的處理函數接口都是異步的,處理器的回應是通過回調對象回傳的。這種設計是出於對高性能的考慮,因為在異步模式下,可以使用少量的執行序(比如和處理器核心數相等的執行序)處理大量的並發請求。 -編譯上述的所有源文件後,我們得到了一個非常簡單的web應用程式,這是一個不錯的開始。 **請瀏覽[wiki](https://github.com/an-tao/drogon/wiki/CHN-01-概述)** +編譯上述的所有源文件後,我們得到了一個非常簡單的web應用程式,這是一個不錯的開始。 **請瀏覽GitHub上的[文檔](https://drogonframework.github.io/drogon-docs/#/CHN/CHN-01-%E6%A6%82%E8%BF%B0)** ## 貢獻方式