Modify the README

This commit is contained in:
antao 2018-12-21 14:50:30 +08:00
parent da13938f51
commit 67966a7bfe
2 changed files with 4 additions and 4 deletions

View File

@ -4,9 +4,9 @@
**Drogon** is a C++11-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's main application platform is Linux. For debugging purposes, it also supports Mac OS. There is no plan to support Windows. Its main features are as follows:
Drogon's main application platform is Linux. It also supports Mac OS and FreeBSD. There is no plan to support Windows. Its main features are as follows:
* The network layer uses a NIO framework based on epoll (kqueue under MacOS) to provide high-concurrency, high-performance network IO;
* The network layer uses a NIO framework based on epoll (kqueue under MacOS/FreeBSD) to provide high-concurrency, high-performance network IO;
* Full asynchronous programming mode;
* Support Http1.0/1.1 (server side and client side);
* Based on template, a simple reflection mechanism is implemented to completely decouple the main program framework, controller and view.

View File

@ -5,9 +5,9 @@
**Drogon**是一个基于C++11的Http应用框架使用Drogon可以方便的使用C++构建各种类型的Web应用服务端程序。
本版本库是github上[Drogon工程](https://github.com/an-tao/drogon)的镜像库。**Drogon**是作者非常喜欢的美剧《权力的游戏》中的一条龙的名字(汉译作卓耿)和龙有关但并不是dragon的误写为了不至于引起不必要的误会这里说明一下。
Drogon的主要应用平台是Linux为了调试方便,也支持Mac OS目前还没有支持Windows的计划。它的主要特点如下
Drogon的主要应用平台是Linux也支持Mac OS、FreeBSD目前还没有支持Windows的计划。它的主要特点如下
* 网络层使用基于epoll(MacOS下是kqueue)的NIO框架提供高并发、高性能的网络IO。详细请见[性能测试](https://gitee.com/an-tao/drogon/wikis/性能测试)
* 网络层使用基于epoll(MacOS/FreeBSD下是kqueue)的NIO框架提供高并发、高性能的网络IO。详细请见[性能测试](https://gitee.com/an-tao/drogon/wikis/性能测试)
* 全异步编程模式;
* 支持Http1.0/1.1(server端和client端)
* 基于template实现了简单的反射机制使主程序框架、控制器(controller)和视图(view)完全解耦;