tokio-uring VS liburing

Compare tokio-uring vs liburing and see what are their differences.

Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
tokio-uring liburing
28 27
998 2,582
2.8% -
4.1 9.6
about 2 months ago 7 days ago
Rust C
MIT License MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

tokio-uring

Posts with mentions or reviews of tokio-uring. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-07-13.
  • tokio_fs crate
    2 projects | /r/rust | 13 Jul 2023
  • Use io_uring for network I/O
    11 projects | news.ycombinator.com | 12 Apr 2023
    While Mio will probably not implement uring in its current design, there's https://github.com/tokio-rs/tokio-uring if you want to use io_uring in Rust.

    It's still in development, but the Tokio team seems intent on getting good io_uring support at least!

    As the README states, the Rust implementation requires a kernel newer than the one that shipped with Ubuntu 20.04 so I think it'll be a while before we'll see significant development among major libraries.

  • Create a data structure for low latency memory management
    4 projects | /r/rust | 4 Dec 2022
    That's what the pool is for: https://github.com/tokio-rs/tokio-uring/blob/master/src/buf/fixed/pool.rs
  • Cloudflare Ditches Nginx for In-House, Rust-Written Pingora
    3 projects | news.ycombinator.com | 16 Sep 2022
    Tokio supports io_uring (https://github.com/tokio-rs/tokio-uring), so perhaps when it's mature and battle-tested, it'd be easier to transition to it if Cloudflare aren't using it already.
  • Anyone using io_uring?
    8 projects | /r/rust | 18 Aug 2022
    - Tokio suffers from a similar problem
  • redb 0.4.0: 2x faster commits with 1PC+C instead of 2PC
    5 projects | /r/rust | 26 Jul 2022
    Eg via tokio-uring.
  • Efficient way to read multiple files in parallel
    3 projects | /r/rust | 8 Jun 2022
    I strongly recommend you to look into io-uring and use async executors that take advantages of it: - tokio-uring (not recommended as it is still undergoing development) - monoio - glommio
  • Stacked Futures and why they are impossible
    1 project | /r/rust | 8 Jun 2022
    This is my thinking as well. Specifically, I realized that if you don’t use tasks, but rather futures and join, than structured concurrency just works out (at the cost of less efficient poll). In a single-threaded/thread-per-core runtime, tasks could have the same semantics as futures. Somewhat elaborated here: https://github.com/tokio-rs/tokio-uring/issues/81
  • How to use async Rust for non-IO tasks?
    2 projects | /r/rust | 20 Apr 2022
    There's a new API on Linux called io_uring that has performance benefits, but most executors don't use it yet, except executors meant specifically to harness the power of io_uring like tokio-uring and Glommio
  • Side effects of Tokio
    1 project | /r/rust | 19 Apr 2022
    Breaking it down a bit further- Rust's async is zero-cost, and there's no way to write faster equivalent code to the language construct in Rust (and presumably other LLVM languages). Tokio introduces abstractions over OS APIs (indirectly) and provides a runtime. The runtime isn't zero cost, but it is likely to be better optimized for "standard" situations than a homebrewed solution, and its primary competition is in the form of other large async runtimes. On the other hand, Tokio's IO routines are (AFAIK) about as well written as one can get with blocking OS APIs, and the only competitors in that space are projects like tokio-uring that use APIs more well suited for asynchronous usage.

liburing

Posts with mentions or reviews of liburing. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-05-22.
  • Io Uring
    3 projects | news.ycombinator.com | 22 May 2023
    I've tinkered around with io_uring on and off for the last couple years. But I think it's really becoming quite cool (not that it wasn't cool before... :)). This was a really interesting post on what's new https://github.com/axboe/liburing/wiki/io_uring-and-networki.... The combination of ring-mapped buffers and multi-shot operations has some really interesting applications for high-performance networking. Hoping over the next year or two we can start to see really bleeding edge networking perf without having to resort to using DPDK :)
  • Why you should use io_uring for network I/O
    1 project | /r/linux | 13 Apr 2023
    Thought I was doing something wrong at first, but after looking at examples and code, I just wasn't able to reach the epoll numbers. Looking on the Github page, there a few issues there with people who found the same thing, with their own examples. #1, #2
  • Use io_uring for network I/O
    11 projects | news.ycombinator.com | 12 Apr 2023
    To address my own silly questions, yes, one should use the new fixed buffers described in this document: https://github.com/axboe/liburing/wiki/io_uring-and-networki...
  • The fastest rm command and one of the fastest cp commands
    6 projects | news.ycombinator.com | 25 Mar 2023
    We're working on this! https://github.com/axboe/liburing/issues/830
  • axboe / liburing
    1 project | news.ycombinator.com | 6 Mar 2023
  • io_uring and networking in 2023
    1 project | /r/Zig | 22 Feb 2023
    1 project | /r/Compsci_nerd | 16 Feb 2023
    Link: https://github.com/axboe/liburing/wiki/io_uring-and-networking-in-2023
    1 project | /r/programming | 14 Feb 2023
    1 project | /r/NOG | 14 Feb 2023
    1 project | news.ycombinator.com | 14 Feb 2023

What are some alternatives?

When comparing tokio-uring and liburing you can also consider the following projects:

libuv - Cross-platform asynchronous I/O

libevent - Event notification library

glommio - Glommio is a thread-per-core crate that makes writing highly parallel asynchronous applications in a thread-per-core architecture easier for rustaceans.

monoio - Rust async runtime based on io-uring.

io_uring-echo-server - io_uring echo server

tokio - A runtime for writing reliable asynchronous applications with Rust. Provides I/O, networking, scheduling, timers, ...

linux-aio - How to use the Linux AIO feature

diesel_async - Diesel async connection implementation

go - The Go programming language

rust-analyzer - A Rust compiler front-end for IDEs [Moved to: https://github.com/rust-lang/rust-analyzer]

Netty - Netty project - an event-driven asynchronous network application framework