Update README.md

This commit is contained in:
Leonid Stryzhevskyi 2018-03-29 08:24:13 +03:00 committed by GitHub
parent 6984994f2e
commit 6b8171770e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,6 +7,8 @@ Organic. Pure C++.
- Blazingly fast
- Zero Dependency, no installations
- **Asynchronous server (High performance. Handle 30K+ simultaneous connections)**
- Multithreaded server (Simple API)
- Connection agnostic. (Use whatever transport. Whatever SSL backend. Whatever sockets, pipes, files. etc. It cares about HTTP stream only)
- REST framework
- Retrofit-like client wrapper (Use whatever request executor for example cURL, or minimalistic one provided out of the box)
@ -14,7 +16,6 @@ Organic. Pure C++.
- Simple dependency injection framework
- Simple Test framework
- HTTP_1.1 (2.0 comes shortly)
- Multithreaded server
## How to start
@ -22,6 +23,5 @@ Grab any project from [examples](https://github.com/oatpp/oatpp-examples), and f
### Examples:
- [oatpp-boost-asio](https://github.com/oatpp/oatpp-examples/tree/master/oatpp-boost-asio) - Example project of how-to use boost-asio as a connection provider for oatpp
- [ApiClient-Demo](https://github.com/oatpp/oatpp-examples/tree/master/ApiClient-Demo) - Example project of how-to use Retrofit-like client wrapper (ApiClient) and how it works
- [CRUD](https://github.com/oatpp/oatpp-examples/tree/master/crud) - Example project of how-to create basic CRUD endpoints
- [ApiClient-Demo](https://github.com/oatpp/oatpp-examples/tree/master/ApiClient-Demo) - Example project of how-to use Retrofit-like client wrapper (ApiClient) and how it works