What I want to do is
- Everyday I need to save top 100 leaderboard data (It has custom data per player too) I am planning to save it in GameData is it a good idea ?
- I need to save those 100k users rank and score, I am planing to save that info in PlayerData is it a good idea ?
- the above too points I need to execute in a single function what is the best way to do ? should I loop through each player in leaderboard ? but it will take a lot of time ?any other approaches ?
Also After 7 days I need to delete point 1 and 2
If there are any other approch to do same do let me know