Stabilizing async fn in traits in 2023 | Inside Rust Blog

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

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.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
  • tokio

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

  • It's outdated and see this issue that removing it: https://github.com/tokio-rs/tokio/pull/1807

  • async-std

    Async version of the Rust standard library

  • But maybe check out the discussion here https://github.com/async-rs/async-std/pull/631 or something (the blog post was linked on the end of it)

  • 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
  • rust

    Empowering everyone to build reliable and efficient software.

  • The issue currently, and the one that the article above points out, is that right now you can't use async in a single-threaded context without paying for synchronization overhead anyway. All of the provided constructs must be Send and the supporting data structures all use Arc and Mutex under the hood. There's been progress in this area but it still isn't a supported use case. In order to do it you basically have to use mio or write things from scratch.

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

  • How should I structure a medium sized crate?

    3 projects | /r/rust | 14 Aug 2023
  • As part of the stdlib mutex overhaul, std::sync::Mutex on Linux now has competitive performance with parking_lot

    7 projects | /r/rust | 3 May 2022
  • Microsoft Rust intro says "Rust is known to leak memory"

    6 projects | /r/rust | 8 Aug 2021
  • Create a Custom GitHub Action in Rust

    3 projects | dev.to | 28 Apr 2024
  • I hate Rust (programming language)

    1 project | news.ycombinator.com | 22 Apr 2024