-
Are you still trying to get this library changes merged upstream? I found an old ticket - #3 - but that's a few years now.
Would you mind adding a note to the README with some information for everyone's benefit? Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Mostly no. I sent in I sent in a PR that gives big speedups in inflate decompression speed 2 years ago. Getting what is basically a rewrite of the compression algos in, I am not going to spend the time cleaning up the code for that. Snappy has no interest in anything that modifies the output. So I will not pursue that either.
It is used by hundreds of projects. Fuzz tested. I am fairly confident in the code. You should always have tests for your own integration, so you can double check for regressions.
Too wide of a question. Assuming you refer to deflate, it is balanced much better than stdlib. Default is about 50% the speed of the fastest mode, so it typically compresses a bit less than stdlib. Also default is "level 5" instead of level 6. You can compare speed and compression vs stdlib in this spreadsheet
This information is AFAICT already there. |
Beta Was this translation helpful? Give feedback.
@prymitive
Mostly no. I sent in I sent in a PR that gives big speedups in inflate decompression speed 2 years ago. Getting what is basically a rewrite of the compression algos in, I am not going to spend the time cleaning up the code for that.
Snappy has no interest in anything that modifies the output. So I will not pursue that either.
It is used by hundreds of projects. Fuzz tested. I am fairly confident in the code. You should always have tests for your own integration, so you can double check for regressions.
Too wide of a question. As…