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 high-performance time series database
Collect, organize, and act on massive volumes of high-resolution data to power real-time intelligent systems.
influxdata.com
featured
CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
coderabbit.ai
featured
  1. rust

    Empowering everyone to build reliable and efficient software.

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

  2. InfluxDB

    InfluxDB high-performance time series database. Collect, organize, and act on massive volumes of high-resolution data to power real-time intelligent systems.

    InfluxDB logo
  3. 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.

  4. 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.

  5. 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.

  6. 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.

  7. CodeRabbit

    CodeRabbit: AI Code Reviews for Developers. Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.

    CodeRabbit 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

  • Rust vs Go? Which should you choose in 2024

    6 projects | dev.to | 27 Aug 2024
  • 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