klauspost / pgzip

Go parallel gzip (de)compression
MIT License
1.12k stars 77 forks source link

Please document the version of Go that was used #21

Closed flx42 closed 6 years ago

flx42 commented 6 years ago

On go 1.11 beta2, I'm seeing the same performance from stdlib and pgzip for decompression, so it would be useful to know when your benchmarks were done.

klauspost commented 6 years ago

The main difference you will see is that decompression is done ahead of time, so the effect is that data will be decompressed while you are doing other processing. The decoder itself is the same (and the Go 1.11 are merged and available for all Go 1.9+ versions)

flx42 commented 6 years ago

Thanks!