michaelsproul / rust_radix_trie

Fast generic radix trie implemented in Rust
https://docs.rs/radix_trie/
MIT License
188 stars 33 forks source link

How to benchmark #51

Open DevinR528 opened 5 years ago

DevinR528 commented 5 years ago

I was thinking about looking into using string-interner to look into #47 and poke around with a few other optimizations, do you have a standard way to benchmark the changes or should I add benchmarking stuff?

michaelsproul commented 5 years ago

Cool! Welcome!

I made some comparative benchmarks a few years ago, but they’re quite unloved:

https://github.com/michaelsproul/radix_trie_benchmarks

If you’d like to whip up something new I’m all for it! I quite like Criterion these days