Show HN: HTTP/2 HPACK Compression Go Library
1–10 of 15 posts
Re: Show HN: HTTP/2 HPACK Compression Go Library
#2Re: Show HN: HTTP/2 HPACK Compression Go Library
#3How does this compare to `net/http2/hpack`, now in the standard library?
Re: Show HN: HTTP/2 HPACK Compression Go Library
#4How does this compare to `net/http2/hpack`, now in the standard library?
Re: Show HN: HTTP/2 HPACK Compression Go Library
#5How does this compare to `net/http2/hpack`, now in the standard library?
Re: Show HN: HTTP/2 HPACK Compression Go Library
#6How does this compare to `net/http2/hpack`, now in the standard library?
One of the main differences is this one uses lookup tables for faster decoding of Huffman compressed data as opposed to using a tree (which is what the stdlib one uses). It also offers some additional encoding options for users that want more control of header field indexing.
Re: Show HN: HTTP/2 HPACK Compression Go Library
#7Re: Show HN: HTTP/2 HPACK Compression Go Library
#8How does this compare to `net/http2/hpack`, now in the standard library?
One of the main differences is this one uses lookup tables for faster decoding of Huffman compressed data as opposed to using a tree (which is what the stdlib one uses). It also offers some additional encoding options for users that want more control of header field indexing.
(I wrote Go's quickly. I've never profiled it, delaying that until Go 1.7, which opened for development yesterday)