Hi there I'm trying to learn the app engine datastore by modeling a db to store user rank and game scores for a 4 player game.

The write throughput will be low, so I'm trying to optimize for reads, as there will be lots of queries to show things like:

  • Get the top 100 players by rank
  • Show the Game details (participant players and scores) for the last 10 games played by any players
  • Show the Game details (participant players and scores) for the last 10 games played by a certain player

I'm thinking of using a listproperty populated with player keys on the Many side, like this:

  class Player(db.Model):
      username = db.UserProperty()
      rank = db.IntegerProperty()

  class Game(db.Model):
      date_played = db.DateTimeProperty(auto_now_add=True)

      players = db.ListProperty(db.Key) 
      #this will always have 4 participant player keys

      scores = db.ListProperty(db.IntegerProperty)
      #the 4 game scores corresponding to the 4 participating players

I have a gut feeling that using the parallel ListProperties for players and scores under the Game class is not very efficient, can you see any drawbacks in this approach? Is there a better way?

I thought of using a separate relationship class that stores reference properties to both games and players, but that seems a bit like overkill, and makes queries more complex.

thanks pmanacas

link|improve this question
1  
have you seen the ranking library that the google code jam team wrote? it's really solid. see the blog post for details. – ryan Apr 1 '11 at 20:47
Hey ryan yes i saw that ranking library, in the end my project needed something much more simple. I ended up storing a score in each Player object that gets updated after each game, then when i want to display a leaderboard i just fetch all the Players and sort them by the score. This works because i have a smallish list of Players that wont grow much over time. – pmanacas Sep 6 '11 at 9:17
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.