メインコンテンツへスキップ

Documentation Index

Fetch the complete documentation index at: https://injectivelabs-mintlify-jp-developers-first-half-1777019423.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

gRPCは、あらゆる環境で実行できる最新のオープンソース高性能Remote Procedure Call(RPC)フレームワークです。ロードバランシング、トレーシング、ヘルスチェック、認証のプラグ可能なサポートにより、データセンター内およびデータセンター間でサービスを効率的に接続できます。また、分散コンピューティングのラストマイルで、デバイス、モバイルアプリケーション、ブラウザをバックエンドサービスに接続する際にも適用できます。 Protobufは、gRPCで最も一般的に使用されるIDL(Interface Definition Language)です。基本的に、protoファイルの形式でデータと関数のコントラクトを保存する場所です。
message Person {
    required string name = 1;
    required int32 id = 2;
    optional string email = 3;
}
Last modified on April 24, 2026