Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
## Queue/stack

```@docs
DualLinkedConcurrentRingQueue
LinkedConcurrentRingQueue
ConcurrentQueue
ConcurrentStack
WorkStealingDeque
Expand Down
41 changes: 41 additions & 0 deletions src/docs/DualLinkedConcurrentRingQueue.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
DualLinkedConcurrentRingQueue{T}()

A concurrent queue with "almost" nonblocking `push!` and `popfirst!`. Calling
`popfirst!` on an empty queue waits for a `push!` in another task.

See also: [`LinkedConcurrentRingQueue`](@ref)

# Examples
```julia
julia> using ConcurrentCollections

julia> q = DualLinkedConcurrentRingQueue{Int}();

julia> push!(q, 111);

julia> push!(q, 222);

julia> popfirst!(q) # first-in first-out
111

julia> popfirst!(q)
222
```

# Extended help

Since `popfirst!` blocks when called on an empty queue, a
`DualLinkedConcurrentRingQueue` acts almost like an unbounded `Base.Channel`.
However, `DualLinkedConcurrentRingQueue` does not support `close` or blocking on
`push!` when exceeding a bound.

`DualLinkedConcurrentRingQueue` performs very well compared to other concurrent
queue implementations. However, since it is based on linked fixed-size buffers,
it has relatively large memory overhead.

`DualLinkedConcurrentRingQueue` is based on the linked multi-polarity dual ring
queue by Izraelevitz and Scott (2017):

> Izraelevitz, Joseph, and Michael L. Scott. “Generality and Speed in
> Nonblocking Dual Containers.” ACM Transactions on Parallel Computing 3, no. 4
> (March 23, 2017): 22:1–22:37. <https://doi.org/10.1145/3040220>.
37 changes: 37 additions & 0 deletions src/docs/LinkedConcurrentRingQueue.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
LinkedConcurrentRingQueue{T}()

A concurrent queue with nonblocking `push!` and [`trypopfirst!`](@ref).

See also: [`DualLinkedConcurrentRingQueue`](@ref)

# Examples
```julia
julia> using ConcurrentCollections

julia> q = LinkedConcurrentRingQueue{Int}();

julia> push!(q, 111);

julia> push!(q, 222);

julia> trypopfirst!(q) # first-in first-out
Some(111)

julia> trypopfirst!(q)
Some(222)

julia> trypopfirst!(q) === nothing # queue is empty
true
```

# Extended help

`LinkedConcurrentRingQueue` is based on Linked Concurrent Ring Queue (or List of
Concurrent Ring Queues; LCRQ) by Morrison and Afek (2013):

> Morrison, Adam, and Yehuda Afek. “Fast Concurrent Queues for X86 Processors.”
> In Proceedings of the 18th ACM SIGPLAN Symposium on Principles and Practice of
> Parallel Programming, 103–112. PPoPP ’13. New York, NY, USA: Association for
> Computing Machinery, 2013. <https://doi.org/10.1145/2442516.2442527>.
> (Revised version:
> <https://www.cs.tau.ac.il/~mad/publications/ppopp2013-x86queues.pdf>)