As part of the stdlib mutex overhaul, std::sync::Mutex on Linux now has competitive performance with parking_lot

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

    Empowering everyone to build reliable and efficient software.

  • Link is broken on Apollo app, here should be a fixed one

  • tokio

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

  • https://github.com/tokio-rs/tokio/issues/4623 for a discussion about what should be done about tokio's parking_lot feature.

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

    A port of Java's ConcurrentHashMap to Rust

  • Recently I learned about the hyaline reclamation scheme that seize uses. Mentioning since it may interest you:flurry, a concurrent HashMap, recently switched from crossbeam-epoch (based on epoch GC) to seize.

  • seize

    Fast, efficient, and robust memory reclamation for Rust.

  • Recently I learned about the hyaline reclamation scheme that seize uses. Mentioning since it may interest you:flurry, a concurrent HashMap, recently switched from crossbeam-epoch (based on epoch GC) to seize.

  • librseq

    Library for Restartable Sequences

  • The epoch GC library I've used before was a Google-internal C++ one. It noticeably improved my software's tail latency over rwlocks. The unique thing about it is that it was basically zero-cost over a plain non-atomic pointer. It used Linux restartable sequences (aka rseq) to take advantage of synchronization operations Linux does on each context switch, rather than adding new atomics. I'm not aware of any open source synchronization libraries that do the same thing, but there's nothing stopping someone from writing one. rseq kernel support has been in mainline since Linux 4.18.

  • SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub 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

  • Why Async Rust?

    3 projects | news.ycombinator.com | 15 Oct 2023
  • How should I structure a medium sized crate?

    3 projects | /r/rust | 14 Aug 2023
  • The Rust I Wanted Had No Future

    4 projects | /r/rust | 5 Jun 2023
  • Stabilizing async fn in traits in 2023 | Inside Rust Blog

    5 projects | /r/rust | 3 May 2023
  • RcLite: Arc<T> and Rc<T> with up to 100% memory efficiency

    4 projects | /r/rust | 20 Feb 2023