#queue #node #linked-list

llq

Wait-free SPSC linked-list queue with individually reusable nodes

1 unstable release

0.1.1 Apr 25, 2021
0.1.0 Apr 25, 2021

#663 in Concurrency

Download history 277/week @ 2024-07-29 613/week @ 2024-08-05 459/week @ 2024-08-12 194/week @ 2024-08-19 478/week @ 2024-08-26 300/week @ 2024-09-02 825/week @ 2024-09-09 316/week @ 2024-09-16 430/week @ 2024-09-23 343/week @ 2024-09-30 189/week @ 2024-10-07 96/week @ 2024-10-14 189/week @ 2024-10-21 118/week @ 2024-10-28 283/week @ 2024-11-04 73/week @ 2024-11-11

669 downloads per month
Used in 7 crates (3 directly)

MIT/Apache

11KB
198 lines

llq

Cargo Documentation

A wait-free single-producer single-consumer linked-list queue with individually reusable nodes.

Queue operations do not block or allocate memory. Individual nodes are allocated and managed separately, and can be reused on multiple queues.

Examples

Using a queue to send values between threads:

use llq::{Node, Queue};

let (mut producer, mut consumer) = Queue::<usize>::new().split();

producer.push(Node::new(0));
producer.push(Node::new(1));
producer.push(Node::new(2));

std::thread::spawn(move || {
    assert_eq!(*consumer.pop().unwrap(), 0);
    assert_eq!(*consumer.pop().unwrap(), 1);
    assert_eq!(*consumer.pop().unwrap(), 2);
    assert!(consumer.pop().is_none());
}).join().unwrap();

Reusing a node between multiple queues:

use llq::{Node, Queue};

let (mut producer1, mut consumer1) = Queue::<usize>::new().split();
let (mut producer2, mut consumer2) = Queue::<usize>::new().split();

let node = Node::new(3);
producer1.push(node);
let node = consumer1.pop().unwrap();
producer2.push(node);
let node = consumer2.pop().unwrap();

assert_eq!(*node, 3);

License

llq is distributed under the terms of both the MIT license and the Apache license, version 2.0. Contributions are accepted under the same terms.

No runtime deps