#queue #bounded #profiling #bbq #producer #consumer #exchanging

nightly bbq-rs

A Block-based Bounded Queue for Exchanging Data and Profiling

2 releases

0.1.1 Feb 18, 2023
0.1.0 Feb 18, 2023

#1073 in Concurrency

Custom license

22KB
513 lines

BBQ: A Block-based Bounded Queue for Exchanging Data and Profiling

This is a concurrent queue that supports multiple producers and multiple consumers. It is implemented based on the paper "BBQ: A Block-based Bounded Queue for Exchanging Data and Profiling" and can be used as follows:

Usage

Add bbq-rs to your Cargo.toml dependencies:

[dependencies]
bbq-rs = "0.1.1"

Example:

use bbq_rs::Bbq;  
use bbq_rs::BlockingQueue;  
  
fn main() {  
    let queue = Bbq::new(100, 100).unwrap();  
  
    // Create four producer threads  
    for i in 0..4 {  
        let q = queue.clone();  
        std::thread::spawn(move || {  
        q.push(i);  
    });

    // Create four consumer threads  
    for _ in 0..4 {  
        let q = queue.clone();  
        std::thread::spawn(move || {  
            println!("{}", q.pop().unwrap());  
        });  
    }
}

Dependencies

~125KB