> ## 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.

# 리더보드 미터

> PlayFab 리더보드 청구 가능 미터가 어떻게 작동하는지, 어떤 작업을 계산하는지, 그리고 리더보드 활동이 서비스 요금에 어떻게 기여하는지 알아봅니다.

리더보드 미터는 세 가지 범주로 나뉩니다.

## Leaderboard Reads

순위가 매겨진 통계에 기반하든 그렇지 않든, 리더보드 읽기는 API 응답에서 리더보드의 크기에 따라 다릅니다. 요청이 N개 항목을 반환하면 미터는 N/10회 (올림) 카운트됩니다. \_N\_은 요청 매개변수와 리더보드 크기의 영향을 받으며, N \< 10인 경우 미터는 1회 카운트됩니다.

이 미터를 카운트하는 API 목록입니다:

| API 이름                        | API 참조                                                                                                                                                                                                          |
| ----------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| GetFriendLeaderboardForEntity | [/rest/api/services/playfab/progression/leaderboards/get-friend-leaderboard-for-entity](https://learn.microsoft.com/en-us/rest/api/services/playfab/progression/leaderboards/get-friend-leaderboard-for-entity) |
| GetLeaderboard                | [/rest/api/services/playfab/progression/leaderboards/get-leaderboard](https://learn.microsoft.com/en-us/rest/api/services/playfab/progression/leaderboards/get-leaderboard)                                     |
| GetLeaderboardAroundEntity    | [/rest/api/services/playfab/progression/leaderboards/get-leaderboard-around-entity](https://learn.microsoft.com/en-us/rest/api/services/playfab/progression/leaderboards/get-leaderboard-around-entity)         |
| GetLeaderboardForEntities     | [/rest/api/services/playfab/progression/leaderboards/get-leaderboard-for-entities](https://learn.microsoft.com/en-us/rest/api/services/playfab/progression/leaderboards/get-leaderboard-for-entities)           |

## Leaderboard Writes

독립형 리더보드(예: 순위 통계 기반이 아닌 리더보드)에서 N개 항목을 업데이트하는 요청은 리더보드 미터를 N회 카운트합니다. 순위 통계 기반 리더보드의 경우 Statistic Write와 Leaderboards Write 미터가 모두 영향을 받습니다. 자세한 내용은 Statistic Write를 참조하세요.

이 미터를 카운트하는 API 목록입니다:

| API 이름                   | API 참조                                                                                                                                                                                            |
| ------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| UpdateLeaderboardEntries | [/rest/api/services/playfab/progression/leaderboards/update-leaderboard-entries](https://learn.microsoft.com/en-us/rest/api/services/playfab/progression/leaderboards/update-leaderboard-entries) |

## Leaderboard Storage

이 미터는 서비스에 저장된 리더보드 데이터의 양을 추적합니다.

각 리더보드 항목에 대해 소비되는 스토리지는 다음 요소의 합계로 계산됩니다:

* Scores: 점수 목록의 길이에 `sizeof(long)`을 곱한 값.
* Metadata: 필드의 길이.
* Timestamp: `sizeof(long)`.
* 엔터티 ID의 길이.

## 관련 항목

* [statistics-meters.md](/services/playfab/pricing/meters/statistics-meters).


## Related topics

- [PlayFab Community 문서](/ko/services/playfab/community/index.md)
- [리더보드](/ko/build/steam-porting-guide/features/steam-leaderboards.md)
- [통계 및 리더보드](/ko/services/xbox-services/player-data/stats-leaderboards/live-stats-leaderboards-nav.md)
- [스탯 및 리더보드](/ko/services/xbox-services/player-data/stats-leaderboards/index.md)
- [Partner Center에서 리더보드 구성](/ko/publishing/game-publishing/how-to/data-platform-2013/how-to-configure-leaderboards-2013.md)
