#df #async #rayon #tokio #bfs

par-dfs

Parallel, serial, and async dfs and bfs traversal

2 releases

0.0.7 Sep 16, 2022
0.0.6 Sep 16, 2022

#754 in Concurrency

Download history 58/week @ 2024-02-19 41/week @ 2024-02-26 32/week @ 2024-03-04

131 downloads per month
Used in serde_json_merge

Custom license

65KB
1.5K SLoC

par-dfs

build status test status benchmarks crates.io docs.rs

Parallel, serial, and async DFS and BFS traversal iterators in Rust.

[dependencies]
par-dfs = "0"

Usage

For usage examples, check the examples and documentation.

Examples

cargo run --example async_fs --features async -- --path ./
cargo run --example sync_fs --features sync,rayon -- --path ./

Documentation

RUSTDOCFLAGS="--cfg docsrs" cargo +nightly doc --all-features

Linting

cargo clippy --tests --benches --examples -- -Dclippy::all -Dclippy::pedantic

Benchmarking

cargo install cargo-criterion
# full benchmark suite
cargo criterion --features full
# sync benchmarks only
cargo criterion --features sync -- sync
# dfs benchmarks only
cargo criterion --features full -- dfs

Benchmark reports from CI are published are available here.

Acknowledgements

The rayon::iter::ParallelIterator implementation for the dynamically growing graph traversal is based on the amazing work in tavianator's blog post.

The implementation of futures_util::stream::Buffered also greatly helped in the design of the async streams.

TODO

  • maybe merge the FastNode and Node traits
  • add examples in the documentation

Dependencies

~0.3–1.2MB
~27K SLoC