ed_join
This is an implementation of Ed-join Algorithm proposed by Xiao et al. (2008) in Rust programming language. There're two major deviation from the original paper:
On a system with Intel i7-8700k and 32 GB ram, the program performed a self-match on a file with 1000 lines in 5 seconds. Note that, this algorithm excels at matching long records, and the aforementioned testfile has rather short lines.
To add this crate as a dependency, add it into your Cargo.toml
or execute cargo add ed_join
.
This crate also comes with an binary ed-join
, which could be installed with cargo install ed_join --features cli
.
License: Apache-2.0 AND MIT