-
Notifications
You must be signed in to change notification settings - Fork 162
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add example & references in docs to steer people directly to MultiGzDecoder #178
Comments
Sounds plausible to me! |
I've been burned by using |
There are some obscure cases, but more around when you know that a file is multiple streams. The Alpine I don't think doing surgery on Alpine packages is the common use case for |
I think it would help users to have documentation that clearly points people to
MultiGzDecoder
for decompressing gzipped data. I see two specific places for this:GzDecoder
docs, make a clear warning thatGzDecoder
only decodes a single stream, and if users want to reliably decode arbitrary gzipped files, they should look atMultiGzDecoder
.'I have some gzipped data, please decode' seems like a very common use case for
flate2
(it was certainly my use case). Right now, it isn't obvious at a quick intro level how to do that.The text was updated successfully, but these errors were encountered: