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