🚀 MultiQueue2 Benchmarks

Performance Overview:

📊 Benchmark Reports

Broadcast_Queue
Tests broadcast functionality with multiple streams and consumers
MPMC_Queue
Tests various MPMC producer/consumer combinations (1p/1c, 1p/2c, 2p/1c, etc.)
SPSC_Comparison
Compares MPMC vs Broadcast queues in single-producer single-consumer scenarios
Throughput_Variations
Performance impact of different buffer sizes and configurations

🔧 How to Run Benchmarks

# Run all benchmarks
cargo bench

# Run with native CPU optimizations  
RUSTFLAGS='-C target-cpu=native' cargo bench

# Run specific categories
cargo bench spsc
cargo bench mpmc
cargo bench broadcast
cargo bench futures