Global Leaderboard Question

If I have multiple(4) different global leaderboards, should I use a different ordered data store for each? Or will that be too many requests

You have to since it’s the only way to do persistent global leaderboards right now (besides external databases which I won’t touch on). GetSortedAsync has a budget of 2p + 5 requests per minute where p represents the number of players in the current instance.

4 leaderboards will consume all but 1 of the standard limit assuming 0 players in the current instance so realistically it should be okay for you to update that many.

2 Likes