Async File I/O use case?

This page summarizes the projects mentioned and recommended in the original post on /r/rust

Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
  • monoio

    Rust async runtime based on io-uring.

  • You can also look into glommio and monoio, which are async executors that are based on io-uring, similar to tokio-uring, but has more complete functionalities.

  • tokio

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

  • It should be noted that Tokio's blocking I/O wrappers (like File, stdout, etc.) is very slow due to the implementation: https://github.com/tokio-rs/tokio/issues/1976. This is shame since most people are likely experimenting with async I/O using files (being familiar with it) and seeing incredibly poor performance.

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts