HTTP

ハイパーテキスト転送プロトコル。

HTTPは、World Wide Webのデータ通信の基盤です。クライアントがリクエストを送り、サーバーがレスポンスを返すアプリケーション層プロトコルです。HTTP/1.1からHTTP/2、そしてQUIC/UDPに基づくHTTP/3へと進化しました。

        graph LR
  Center["HTTP"]:::main
  Pre_tcp_ip["tcp-ip"]:::pre --> Center
  click Pre_tcp_ip "/terms/tcp-ip"
  Pre_dns["dns"]:::pre --> Center
  click Pre_dns "/terms/dns"
  Center --> Child_rest_apis["rest-apis"]:::child
  click Child_rest_apis "/terms/rest-apis"
  Rel_web_sockets["web-sockets"]:::related -.-> Center
  click Rel_web_sockets "/terms/web-sockets"
  Rel_css3["css3"]:::related -.-> Center
  click Rel_css3 "/terms/css3"
  Rel_schema_org["schema-org"]:::related -.-> Center
  click Rel_schema_org "/terms/schema-org"
  classDef main fill:#7c3aed,stroke:#8b5cf6,stroke-width:2px,color:white,font-weight:bold,rx:5,ry:5;
  classDef pre fill:#0f172a,stroke:#3b82f6,color:#94a3b8,rx:5,ry:5;
  classDef child fill:#0f172a,stroke:#10b981,color:#94a3b8,rx:5,ry:5;
  classDef related fill:#0f172a,stroke:#8b5cf6,stroke-dasharray: 5 5,color:#94a3b8,rx:5,ry:5;
  linkStyle default stroke:#4b5563,stroke-width:2px;

      

🧒 5歳でもわかるように説明

HTTPは、ウェブブラウザがウェブサイトを表示するために使う言葉のようなものです。

🤓 Expert Deep Dive

HTTPはGETやPOSTなどのメソッドを定義します。HTTP/3は、TCPの代わりにUDP上のQUICを使用し、Head-of-Lineブロッキングを解消し、接続確立を高速化します。

🔗 関連用語

前提知識:
さらに詳しく:

📚 出典