├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── benchmarks ├── benchmarks.md └── io_uring_vs_epoll.png └── io_uring_echo_server.c /.gitignore: -------------------------------------------------------------------------------- 1 | .out 2 | /io_uring_echo_server 3 | /.vscode 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frevib/io_uring-echo-server/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frevib/io_uring-echo-server/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frevib/io_uring-echo-server/HEAD/README.md -------------------------------------------------------------------------------- /benchmarks/benchmarks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frevib/io_uring-echo-server/HEAD/benchmarks/benchmarks.md -------------------------------------------------------------------------------- /benchmarks/io_uring_vs_epoll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frevib/io_uring-echo-server/HEAD/benchmarks/io_uring_vs_epoll.png -------------------------------------------------------------------------------- /io_uring_echo_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frevib/io_uring-echo-server/HEAD/io_uring_echo_server.c --------------------------------------------------------------------------------