I'm using Google App Engine, a Non-Relational Database (NoSQL). My question is, which is the best way to model a rank (ranking of players) using their scores?
For example, my players are:
Player { String name, int score}
I want to know the rank (position) for a player and also get the top 10 players, but I am unsure which is the best way.