What exactly is io_uring?
io_uring is a (new as of mid 2019) Linux kernel interface to efficiently allow you to send and receive data asynchronously. It was originally designed to target block devices and files but has since gained the ability to work with things like network sockets. Unlike something like epoll(), it is built around a completion model … Read more