Rust without the async (hard) part

This page summarizes the projects mentioned and recommended in the original post on news.ycombinator.com

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

    WebAssembly System Interface

  • Hi, author here. All examples should have used `lunatic::net`, I fixed it now.

    The reason why we provide `lunatic::net` and you can't just use `std::net` is that WASI (system interface for WebAssembly) still doesn't have support for sockets[0]. `lunatic::net::TcpStream` is for now just a drop in replacement for `std::net::TcpStream` and once sockets get standardised you will be able to use the standard library types instead.

    [0]: https://github.com/WebAssembly/WASI/pull/312

  • context-switch

    Comparison of Rust async and Linux thread context switch time.

  • 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
  • go-cleanhttp

    Get easily stdlib HTTP client, which does not share any state with other clients.

  • Yes - `DefaultClient` in `net/http` is what the various package level methods operate on. This is constitutionally bad as global state that dependencies can mutate at will during init (or any other time), hence go-cleanhttp [1].

    [1]: https://github.com/hashicorp/go-cleanhttp

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

  • Comparison of Rust async and Linux thread context switch time and memory use

    1 project | news.ycombinator.com | 11 Jan 2024
  • What is the point of using async?

    1 project | /r/rust | 12 Sep 2022
  • Problems with Async Rust

    1 project | news.ycombinator.com | 26 Feb 2022
  • Goroutines Are Not Significantly Smaller Than Threads

    2 projects | /r/programming | 14 Mar 2021
  • Comparison of Rust async and Linux thread context switch time and memory use

    1 project | /r/programming | 12 Feb 2021