https://github.com/salahsheikh/mithril
A C++17 async client-server framework
https://github.com/salahsheikh/mithril
async client client-server non-blocking server
Last synced: 17 days ago
JSON representation
A C++17 async client-server framework
- Host: GitHub
- URL: https://github.com/salahsheikh/mithril
- Owner: salahsheikh
- License: other
- Created: 2021-03-14T23:48:13.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-04-05T03:17:06.000Z (over 5 years ago)
- Last Synced: 2025-10-29T00:35:12.523Z (9 months ago)
- Topics: async, client, client-server, non-blocking, server
- Language: C++
- Homepage:
- Size: 38.1 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# mithril
A C++17 async/non-blocking networking client-server framework inspired by [Netty](https://netty.io/) and built on top
of [scylladb/seastar](https://github.com/scylladb/seastar).
Special attention was given to:
* Compose I/O operations in a structured manner to avoid "callback hell"
* Scaling well with additional cores
* Minimizing memory copies
### Examples
* [Echo server and client](https://github.com/salahsheikh/mithril/tree/main/examples/echo)
### See also
[facebook/wangle](https://github.com/facebook/wangle)