> ## Documentation Index
> Fetch the complete documentation index at: https://devdocs.xbox.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Game Server Configuration の概要

> PlayFab の Game Server Configuration について学びます。タイトルのゲーム サーバー エンティティ向けにサーバー サイドのキー/値およびファイル ストレージを提供します。

Game Server Configuration は、タイトルの `game_server` エンティティに関連付けられたデータのためのサーバー サイド ストレージを提供します。Entity Objects および Entity Files API を使用して、ゲーム サーバーの動作を構成する JSON オブジェクトおよびバイナリ ファイルを保存および取得します。

## Game Server Configuration に格納すべき内容

Game Server Configuration は、次のようなデータに使用します。

* 個々のプレイヤーではなく、ゲーム サーバーに適用されるもの
* サーバー権限のあるゲーム ロジックが読み取る必要があるもの
* マッチ設定、サーバー パラメーター、プレイヤーごとではない機能フラグなどの構成

## 仕組み

Game Configuration は、PlayFab の他のエンティティ データ ストレージと同じ基盤 API を使用します。

* **Entity Objects** — [SetObjects](https://learn.microsoft.com/en-us/rest/api/playfab/data/object/set-objects) および [GetObjects](https://learn.microsoft.com/en-us/rest/api/playfab/data/object/get-objects) を使用して、`game_server` エンティティに小さな JSON シリアライズ可能なキー/値ペアを保存します。
* **Entity Files** — [File API](https://learn.microsoft.com/en-us/rest/api/playfab/data/file) を使用して、`game_server` エンティティに大きなバイナリまたはテキスト ファイルを保存します。

`game_server` エンティティとして認証するには、タイトル エンティティとして [AuthenticateGameServerWithCustomId](https://learn.microsoft.com/en-us/rest/api/playfab/authentication/authentication/authenticate-game-server-with-custom-id) を呼び出します。

## 関連機能

すべてのエンティティ ストレージ機能の比較については、[Entity Objects](/services/playfab/live-service-management/game-configuration/entities/entity-objects#related-features) を参照してください。

## Game Manager での表示

Game Manager のエンティティ ブラウザーで `game_server` エンティティを選択することで、Game Configuration データを表示および管理できます。

## 関連項目

* [エンティティ プログラミング モデル](/services/playfab/live-service-management/game-configuration/entities)
* [Entity Objects](/services/playfab/live-service-management/game-configuration/entities/entity-objects)
* [Entity Files](/services/playfab/live-service-management/game-configuration/entities/entity-files)
* [Title Data](/services/playfab/live-service-management/game-configuration/titledata)


## Related topics

- [MicrosoftGame.config の概要](/ja-jp/build/core-features/common/game-config/MicrosoftGameConfig-Overview.md)
- [Game Binding の概要](/ja-jp/services/xbox-services/fundamentals/game-binding/game-binding-overview.md)
- [Game Saves の概要](/ja-jp/services/playfab/player-progression/game-saves/overview.md)
- [Game Chat 2 の概要](/ja-jp/services/xbox-services/multiplayer/chat/game-chat2/game-chat-2-overview.md)
- [GameInput の概要](/ja-jp/build/core-features/common/input/overviews/input-overview.md)
