Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Go 1.5 & 1.6の新機能のおさらい

Ian Lewis
December 01, 2015

Go 1.5 & 1.6の新機能のおさらい

Goは実運用の事例が最近多く出ています。
なんで最近実用的に使っている開発者が増えているのでしょうか。
実は互換性を待ちながら、便利な機能が
たくさん出てくるのがその理由の一つです。
9月にリリースされたGo 1.5と開発中のGo 1.6の新しい機能を紹介します。

Ian Lewis

December 01, 2015
Tweet

More Decks by Ian Lewis

Other Decks in Technology

Transcript

  1. Confidential & Proprietary Google Cloud Platform 2 Ian Lewis Developer

    Advocate, Google Cloud Platform Tokyo, Japan @IanMLewis google.com/+IanLewis-hoge
  2. Confidential & Proprietary Google Cloud Platform 4 Go(lang) • Google

    で起こる問題解決するために Googleで開発 ◦ 開発スピード ◦ 使いにくい型システム ◦ 並行処理
  3. Confidential & Proprietary Google Cloud Platform 5 Goの機能 • ネイティブコードにコンパイル

    • ガーメージコレックション • 型付き • Goroutines • Channels • Structs/Interfaces
  4. Confidential & Proprietary Google Cloud Platform 8 Goroutines & Channels

    func sum(a []int, c chan int) { sum := 0 for _, v := range a { sum += v } c <- sum // send sum to c }
  5. Confidential & Proprietary Google Cloud Platform 9 Goroutines & Channels

    func main() { a := []int{7, 2, 8, -9, 4, 0} c := make(chan int) go sum(a[:len(a)/2], c) go sum(a[len(a)/2:], c) x, y := <-c, <-c // receive from c fmt.Println(x, y, x+y) }
  6. Confidential & Proprietary Google Cloud Platform 11 Docker • コンテナランタイムエンジン

    • HTTP API サーバー • イメージパケージフォーマット Image © Docker All Rights Reserved http://docs.docker.com/
  7. Confidential & Proprietary Google Cloud Platform 12 etcd • Distributed

    Key-Value Store • Used for Storing Cluster State/Config • Implements RAFT Protocol
  8. Confidential & Proprietary Google Cloud Platform 13 Vitess • Used

    at Youtube • Sharding MySQL Servers • Serving all YouTube DB traffic since 2011 • http://vitess.io/
  9. Confidential & Proprietary Google Cloud Platform 14 Kubernetes • Container

    Cluster Manager • Manages a Distributed Cluster • Supports Pods • Provides HTTP API
  10. Confidential & Proprietary Google Cloud Platform 15 Gorilla • ウェブツールキット

    • リクエストコンテキスト • セッション管理 • URLルーティング • URLリバース • Web Sockets
  11. Confidential & Proprietary Google Cloud Platform 16 Go 1.5 Image

    © Takuya Ueda. Licensed under CC BY 3.0.
  12. Confidential & Proprietary Google Cloud Platform 17 Go 1.5 •

    Released Aug 2015 • Go 1.0から、一番大きいリリース • 新しい並行GC • Go コンパイラやツールチェインの改善 • パッケージベンダリング (beta) • goroutineスケジューラーの改善
  13. Confidential & Proprietary Google Cloud Platform 25 Go コンパイラやツールチェインの改善 •

    GoはGoで書かれている • GoをビルドするにはCコンパイラーはいらな い • Go開発はシンプルになる
  14. Confidential & Proprietary Google Cloud Platform 26 Go コンパイラやツールチェインの改善 •

    新しい go tool trace コマンド • Goシェアドライブラリー サポート
  15. Confidential & Proprietary Google Cloud Platform 27 Go コンパイラやツールチェインの改善 $

    go test -o pkg.test net/http -trace trace.out ok net/http 20.876s $ go tool trace pkg.test trace.out
  16. Confidential & Proprietary Google Cloud Platform 28 Goパッケージベンダリング • パッケージベンダリング

    ◦ GO15VENDOREXPERIMENT=1 ◦ vendor ディレクトリに依存ライブラリを入 れる
  17. Confidential & Proprietary Google Cloud Platform 31 Goパッケージベンダリング • 特定なバージョンを部分的に使う

    • 分かりやすくて簡単 • ベンダリングするツールがいくつか (Godeps など)
  18. Confidential & Proprietary Google Cloud Platform 32 Go 1.6 Image

    © Takuya Ueda. Licensed under CC BY 3.0.
  19. Confidential & Proprietary Google Cloud Platform 33 Go 1.6 •

    Release Jan 2016? • パッケージベンダリング (stable) • HTTP/2 サポート (net/http) • Text/HTMLテンプレートのコード ブロック • メモリサニタイザー
  20. Confidential & Proprietary Google Cloud Platform 34 HTTP/2 Old //

    hello world, the web server func HelloServer(w http.ResponseWriter, req *http.Request) { io.WriteString(w, "hello, world!\n") } func main() { m := http.NewServeMux() m.HandleFunc("/", HelloServer) srv := &http.Server{ Addr: ":8000", // Normally ":443" Handler: m, } http2.ConfigureServer(srv, &http2.Server{}) log.Fatal(srv.ListenAndServeTLS("server.crt", "server.key")) }
  21. Confidential & Proprietary Google Cloud Platform 35 HTTP/2 // hello

    world, the web server func HelloServer(w http.ResponseWriter, req *http.Request) { io.WriteString(w, "hello, world!\n") } func main() { http.HandleFunc("/", HelloServer) log.Fatal(http.ListenAndServeTLS( ":8000", "server.crt", "server.key", nil)) }
  22. Confidential & Proprietary Google Cloud Platform 36 HTTP/2 // hello

    world, the web server func HelloServer(w http.ResponseWriter, req *http.Request) { io.WriteString(w, "hello, world!\n") } func main() { http.HandleFunc("/", HelloServer) log.Fatal(http.ListenAndServeTLS( ":8000", "server.crt", "server.key", nil)) }
  23. Confidential & Proprietary Google Cloud Platform 37 テンプレートの block キーワード

    • テンプレート継承が実現できる • block を定義して、別のテンプレートで オーバーライドできる
  24. Confidential & Proprietary Google Cloud Platform 38 テンプレートの block キーワード

    <html> <head> <title>{{ block "title" .}}Default title{{end}}</title> </head> <body>{{ block "body" .}}Default body{{end}}</body> </html>
  25. Confidential & Proprietary Google Cloud Platform 39 テンプレートの block キーワード

    {{define "title"}}About page{{end}} {{define "body"}}About me{{end}}
  26. Confidential & Proprietary Google Cloud Platform 40 テンプレートの block キーワード

    baseTmpl, err := template.New("base").Parse(base) if err != nil { log.Fatal(err) } aboutPageTmpl, err := template.Must(baseTmpl.Clone()).Parse(aboutPage) if err != nil { log.Fatal(err) } if err := aboutPageTmpl.Execute(os.Stdout, nil); err != nil { log.Fatal(err) }
  27. Confidential & Proprietary Google Cloud Platform 42 Go を使い尽くしましょう •

    Service Oriented Architecture • サービス基盤 • コンテナ
  28. Confidential & Proprietary Google Cloud Platform 43 Ian Lewis Developer

    Advocate, Google Cloud Platform Tokyo, Japan @IanMLewis google.com/+IanLewis-hoge Thank You!