Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

migrated from dba.stackexchange.com Dec 11 '12 at 23:49

1 Answer

There is a lib called google app engine ranklist. http://code.google.com/p/google-app-engine-ranklist/

Ranklist is a python library for Google App Engine that implements a data structure for storing integer scores and quickly retrieving their relative ranks.

A very simple sample app is included in the source code, and can be tried out at http://ranklist-example.appspot.com.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.