Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/KuangjuX-Archived/labs-net-rs
TCP server implementation using various methods.
https://github.com/KuangjuX-Archived/labs-net-rs
Last synced: 3 months ago
JSON representation
TCP server implementation using various methods.
- Host: GitHub
- URL: https://github.com/KuangjuX-Archived/labs-net-rs
- Owner: KuangjuX-Archived
- License: gpl-3.0
- Archived: true
- Created: 2021-06-18T04:09:43.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-10-31T06:32:07.000Z (about 3 years ago)
- Last Synced: 2024-06-20T08:31:43.074Z (5 months ago)
- Language: Rust
- Homepage:
- Size: 73.2 KB
- Stars: 10
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# labs-net-rs
TCP server implementation using various methods.## Schedule
- [x] Server using threadpool
- [x] Server using mio & threadpool
- [x] Server using epoll & threadpool
- [x] Server using tokio
- [x] Server using io_uringIn addition, I also write a blog to describe io_uring:
[io_uring 阅读笔记](http://blog.kuangjux.top/2021/10/30/io-uring%E9%98%85%E8%AF%BB%E7%AC%94%E8%AE%B0/)## Some Useful Links
[epoll & thread pool](https://www.zhihu.com/question/271561199)
[Efficient IO with io_uring](https://kernel.dk/io_uring.pdf)
[io_uring Introduction](http://arthurchiao.art/blog/intro-to-io-uring-zh/)