16 个版本

使用旧的 Rust 2015

0.3.2 2017年4月26日
0.3.1 2016年1月19日
0.2.3 2015年9月27日
0.2.1 2015年4月4日
0.1.3 2014年12月30日

#443并发 中排名

Download history • Rust 包仓库 824/week @ 2024-02-26 • Rust 包仓库 863/week @ 2024-03-04 • Rust 包仓库 919/week @ 2024-03-11 • Rust 包仓库 1004/week @ 2024-03-18 • Rust 包仓库 924/week @ 2024-03-25 • Rust 包仓库 1431/week @ 2024-04-01 • Rust 包仓库 940/week @ 2024-04-08 • Rust 包仓库 980/week @ 2024-04-15 • Rust 包仓库 1032/week @ 2024-04-22 • Rust 包仓库 974/week @ 2024-04-29 • Rust 包仓库 827/week @ 2024-05-06 • Rust 包仓库 960/week @ 2024-05-13 • Rust 包仓库 956/week @ 2024-05-20 • Rust 包仓库 1023/week @ 2024-05-27 • Rust 包仓库 989/week @ 2024-06-03 • Rust 包仓库 542/week @ 2024-06-10 • Rust 包仓库

3,588 每月下载量
27 crate 中使用(直接使用 5 个)

Apache-2.0/MIT

14KB
220 代码行

deque - 一个(大部分)无锁并发工作窃取双端队列

Build Status

本模块包含 Chase-Lev 工作窃取双端队列的实现,该实现基于 "Dynamic Circular Work-Stealing Deque" 文章中的描述。实现主要基于 "Correct and Efficient Work Stealing for Weak Memory Models" 中使用 C11 原子操作的实现。

本双端队列唯一可能需要锁同步的部分是在双端队列增长时偶尔调用内存分配器。否则所有操作都是无锁的。

示例

use deque;

let (worker, stealer) = deque::new();

// Only the worker may push/pop
worker.push(1);
worker.pop();

// Stealers take data from the other end of the deque
worker.push(1);
stealer.steal();

// Stealers can be cloned to have many stealers stealing in parallel
worker.push(1);
let stealer2 = stealer.clone();
stealer2.steal();

历史

deque 模块最初由 Alex Crichton 在 2013-11-26 编写,提交为 Rust git 仓库中的 a70f9d7324a91058d31c1301c4351932880d57e8。

后来,他在 2014-11-24 的提交 71d4e77db8ad4b6d821da7e5d5300134ac95974e 中将其作为 sync 模块重写的部分删除。

随着 crates.io 包仓库的引入,我决定将其作为自己的 crate 恢复。代码基于重写 sync 模块之前 Rust 仓库中的版本。到目前为止的所有更改仅限于使代码和测试编译所需的更改。

无运行时依赖