タグ

関連タグで絞り込む (1)

タグの絞り込みを解除

goとhttp2に関するono_matopeのブックマーク (5)

  • HTTP/2 and http2 in Go 1.6

    #GoSF #golang meetup talk about HTTP/2 and http2 support in Go 1.6. Slides at: https://docs.google.com/presentation/d/1G9gPIAorTsVD_pMgEJcTGEjt5ApZZWyI2uO244_f7TU/edit?usp=sharing Meetup event was: http://www.meetup.com/golangsf/events/226090314/comments/462685865/ This is a re-recording of my talk, since I forgot to hit record last night during the actual meetup. As a result, it unfortunately

    HTTP/2 and http2 in Go 1.6
  • go 1.6でhttp.Clientが自動的にhttp/2を使わないようにする方法 - Qiita

    (この記事は投稿時点でのgotip版に基づいています。go 1.6リリース時には変更される可能性があります) Go 1.6では、通常のhttp.Clientを使ってhttpsリクエストを行うと、自動的にhttp2にアップグレードされます。大変便利ですが、検証時など、これを無効にしたいこともあります。そんなときは、次のいずれかの方法を使ってアップグレードを抑止することができます。 環境変数GODEBUGを使う GODEBUG=h2client=0 http.TransportのTLSNextProtoを非nilにする // TLSNextProto specifies how the Transport switches to an // alternate protocol (such as HTTP/2) after a TLS NPN/ALPN // protocol negotiat

    go 1.6でhttp.Clientが自動的にhttp/2を使わないようにする方法 - Qiita
    ono_matope
    ono_matope 2016/01/05
    書いてた
  • Go言語とHTTP2

    http2 in Go 1.6; dotGo 2015 - Google スライド 2015年の5月にRFCが出たばかりのHTTP2が2016年の2月にリリース予定のGo1.6で早くも利用可能になることになっている.HTTP2の勉強も兼ねてGo言語におけるHTTP2実装を追ってみる. 以下ではまず実際にHTTP2サーバを動かしChromeで接続してみる.次に現状コードがどのように管理されているかを追う.最後に実際にコードを動かしながらHTTP2の各種機能を追う.なお参照するコードはすべて以下のバージョンを利用している(まだWIPなのでコードなどは今後変わる可能性があるので注意). HTTP2とは? HTTP/2に関してはスライドやブログ記事,Podcastなど非常に豊富な情報がインターネット上に存在する.そもそもHTTP2とは何か?なぜ必要なのか?などを理解したい場合は参考に挙げた記事など

  • HTTP/2 and Go

    UPDATE (2015/10/15): HTTP/2 is now enabled by default for http servers in tip and will be released as part of Go 1.6. That means that you will be able to create HTTP/2 servers without even calling ConfigureServer(). At #golang tip @HTTP_2 server now enabled by default. https://t.co/dcaTfboGVe & https://t.co/c8xbVtBqRe Thx @enneff, @bmizerany & others! — Brad Fitzpatrick (@bradfitz) October 14, 201

  • gRPC

    Why gRPC?gRPC is a modern open source high performance Remote Procedure Call (RPC) framework that can run in any environment. It can efficiently connect services in and across data centers with pluggable support for load balancing, tracing, health checking and authentication. It is also applicable in last mile of distributed computing to connect devices, mobile applications and browsers to backend

    gRPC
  • 1