pgzip icon indicating copy to clipboard operation
pgzip copied to clipboard

Go parallel gzip (de)compression

Results 6 pgzip issues
Sort by recently updated
recently updated
newest added

I use a writer in a loop, which looks like this: ``` z := gzip.NewWriter(nil) for { buf := new(bytes.Buffer) z.Reset(buf) msg := getMessage() z.Write(msg) z.Close() processMessage(msg) } ``` When...

This fixes #38 and #39, though I'm not entirely sure if you're happy with this approach. To solve #39, we switch from using a channel for the block pool and...

I'm member of the Debian Golang group and working on packaging this project in Debian/Ubuntu. In the context of https://bugs.debian.org/1033826 we were wondering about the maturity of the proposed code...

I found this when playing around with the reproducer for #38. It seems as though if you do an `io.Copy` of a stream (which uses `z.WriteTo`), followed by `ReadAll` (which...

It turns out that if you have a `pgzip.Reader` which has read to the end of the stream, if you call `io.Copy` on that stream you get `io.EOF` -- which...

Hi there, Any chance of implementing pgzip for plain zlib? As far as I can tell, the only thing that differs between the two formats are the headers and the...