Help with Massive Global Leaderboard

I want to create a massive global leaderboard (it would store like 10 million users), it wouldn’t be all display in Gui, I just need a way to get a player’s rank out of that leaderboard

I’ve looked into order data stores, but there is a certain amount of requests you can make out to them and I would need to load all that data which would simply take too longer with order data stores doing only 100 keys per request
I’ve tried Saving all the data into a table, then splitting them up into 4mb pieces to store in a datastore, but I can only save 200,000 users per key and I can’t think of an effective way to change the data in the tables, because if to players update the table at the same time only one of there new data will go through.
I also don’t want to offshore the data saving as my client doesn’t want to pay for the a server.

1 Like

If you offshore it would surely be fine running on almost anything, you could probably find something free to host it. I think that may be the easiest way.

1 Like

If that’s the only solution, how would I even go about doing that

You need a simple HTTP server with a database to store the leaderboard. There are a lot of options for doing that and most are going to be overkill since they’re typically for websites. If I were doing it I’d see if there was an Azure example for C# and modify that.

1 Like