I did benchmarks #222
safinaskar
started this conversation in
General
Replies: 1 comment
-
Okay, so here is list of Github issues I |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
So here is my own simplistic parallel rdedup alternative, written in Rust, which uses fixed sized chunking (which is great for VM images): borgbackup/borg#7674 (comment) . You can also see there benchmark, which compares my tool to rdedup and other alternatives. And my tool is way faster than all of them. (But I cheat by using fixed sized chunking). See whole issue for context and especially this comment borgbackup/borg#7674 (comment) for comparison between rdedup and other CDC-based tools.
For my tool I implemented my own rayon-based parallel map ( rayon-rs/rayon#1071 )
Beta Was this translation helpful? Give feedback.
All reactions