Crates.io | atomic-queue |
lib.rs | atomic-queue |
version | 2.1.0 |
source | src |
created_at | 2021-07-09 02:50:52.259028 |
updated_at | 2024-01-17 09:22:06.716219 |
description | Simple bounded lock-free queue for use in Audio applications, ported from https://github.com/max0x7ba/atomic_queue. |
homepage | https://github.com/yamadapc/augmented-audio |
repository | https://github.com/yamadapc/augmented-audio |
max_upload_size | |
id | 420558 |
size | 243,683 |
Multi-producer multi-consumer bounded lock-free queue for use in Audio applications, ported from https://github.com/max0x7ba/atomic_queue.
Quite a bit slower than ringbuf
(~2x) on i7.
I'd think this is fine since this queue supporting multiple consumers and
multiple producers while ringbuf
is single producer single consumer.
30% faster on a M1 Pro Macbook.
MIT