Open holly-hacker opened 1 year ago
See #9 and the "Encoder" section in the README:
For now, there is also a dumb encoder that only uses byte literals, with many hard-coded constants for code simplicity. Better encoders are welcome!
I can remove mention of "encoder" from the "About" description of this GitHub repo. Don't hesitate to send a PR with further suggestions on how to improve the wording in the README.
I was reminded of this issue by your recent blogpost. Should I close this in favor of #9, or do you want to keep it open?
I was comparing compression methods to figure out what to choose for my project and noticed some strange results:
In this snippet, lzma, lzma2 and xz are done using
lzma_compress
,lzma2_compress
andxz_compress
respectively. It seemed weird to me that lzma2 and xz are so poor, so I stepped through the code and noticed that it's not applying compression at all for lzma2 and xz:This sounds like either a bug, or something that should be documented better. As I understand from the readme file, lzmr-rs is only a decoder which is confusing since these compression functions are present.