I needed to write a simple multi-threaded message processing queue in C++ today. Makes me really appreciate how easy this is to do in Rust.

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

InfluxDB – Built for High-Performance Time Series Workloads
InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
www.influxdata.com
featured
Sevalla - Deploy and host your apps and databases, now with $50 credit!
Sevalla is the PaaS you have been looking for! Advanced deployment pipelines, usage-based pricing, preview apps, templates, human support by developers, and much more!
sevalla.com
featured
  1. crossbeam

    Tools for concurrent programming in Rust

    In the C++ example you create a naive mpsc queue using a std queue and a mutex, while in the rust example you use `std::sync::mpsc` which is now implemented internally using https://github.com/crossbeam-rs/crossbeam .

  2. InfluxDB

    InfluxDB – Built for High-Performance Time Series Workloads. InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.

    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

  • multi-producer multi-consumer channels for message passing python library

    1 project | /r/Python | 29 Jul 2023
  • crossbeam VS scalable-concurrent-containers - a user suggested alternative

    2 projects | 13 Apr 2023
  • Ergonomic Communication with a tokio::task::spawn

    1 project | /r/rust | 11 Apr 2023
  • How would one go about updating in-memory storage lock free, while other threads read?

    1 project | /r/rust | 3 Mar 2023
  • This implementation is actually unsafe since we don't check if the index is in-bounds. But this is fine since this is only used internally.

    2 projects | /r/rustjerk | 26 Dec 2022

Did you know that Rust is
the 5th most popular programming language
based on number of references?