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.