HTTP2

HTTP/2 (原本的名字是 HTTP/2.0) 是万维网使用的 HTTP 网络协议的第二个主要版本。HTTP/2 提供了更快的速度和更好的用户体验。

特性

  • 使用二进制格式传输数据,而不是文本。使得在解析和优化扩展上更为方便。
  • 多路复用,所有的请求都是通过一个 TCP 连接并发完成。
  • 对消息头采用 HPACK 进行压缩传输,能够节省消息头占用的网络的流量。
  • Server Push:服务端能够更快的把资源推送给客户端。

怎样运行 HTTP2 和 HTTPS 服务?

生成一个自签名的 X.509 TLS 证书(HTTP/2 需要 TLS 才能运行)

  1. go run $GOROOT/src/crypto/tls/generate_cert.go --host localhost

上面的命令会生一个cert.pemkey.pem 文件。

这里只是展示使用,所以我们用了自签名的证书,正式环境建议去
CA申请证书。

配置服务器引擎 engine.Config

server.go

  1. package main
  2. import (
  3. "fmt"
  4. "net/http"
  5. "time"
  6. "github.com/labstack/echo"
  7. )
  8. func request(c echo.Context) error {
  9. req := c.Request()
  10. format := "<pre><strong>Request Information</strong>\n\n<code>Protocol: %s\nHost: %s\nRemote Address: %s\nMethod: %s\nPath: %s\n</code></pre>"
  11. return c.HTML(http.StatusOK, fmt.Sprintf(format, req.Proto, req.Host, req.RemoteAddr, req.Method, req.URL.Path))
  12. }
  13. func stream(c echo.Context) error {
  14. res := c.Response()
  15. gone := res.CloseNotify()
  16. res.Header().Set(echo.HeaderContentType, echo.MIMETextHTMLCharsetUTF8)
  17. res.WriteHeader(http.StatusOK)
  18. ticker := time.NewTicker(1 * time.Second)
  19. defer ticker.Stop()
  20. fmt.Fprint(res, "<pre><strong>Clock Stream</strong>\n\n<code>")
  21. for {
  22. fmt.Fprintf(res, "%v\n", time.Now())
  23. res.Flush()
  24. select {
  25. case <-ticker.C:
  26. case <-gone:
  27. break
  28. }
  29. }
  30. }
  31. func main() {
  32. e := echo.New()
  33. e.GET("/request", request)
  34. e.GET("/stream", stream)
  35. e.Logger.Fatal(e.StartTLS(":1323", "cert.pem", "key.pem"))
  36. }

最后