Results 3 comments of Boii

现在是被优化了吗?为啥我跑出来没啥差别,即使结构体切片和结构体指针切片,也没啥区别。 ```go const N = 1

I ran on Ubuntu 20.04. It worked. But I do not understand why need to compute the size of every field and the ROW_SIZE. I tried that `count uint32_t ROW_SIZE...

I try to add `g.WriteHeaderNow()`, it worked. ```diff func (g *gzipWriter) Write(data []byte) (int, error) { g.Header().Del("Content-Length") + g.WriteHeaderNow() return g.writer.Write(data) } ``` compare with default writer `responseWriter`: ```go func...