HdrHistogram / HdrHistogram_rust

A port of HdrHistogram to Rust
Apache License 2.0
303 stars 40 forks source link

Pure rust compression #64

Open marshallpierce opened 7 years ago

marshallpierce commented 7 years ago

flate2 is fast, but it would be nice to have a default pure rust compression library so we wouldn't need to have the serialization feature stuff.

Presumably this would go along with allowing the user to specify which compression option to use, perhaps via generifying on the compressor.

jonhoo commented 7 years ago

Can't we just use https://github.com/sile/libflate or https://github.com/oyvindln/deflate-rs ?

marshallpierce commented 7 years ago

Yep, almost certainly, though flate2 is faster by a fair bit. Just a simple matter of programming. :)