Legacy blog posts preserved for posterity with a little nostalgia.

Entries in trustmap (1)

Sunday
28Jun2009

Scalable Trust Metrics in the Google Appengine Data Store

This is a dump of my thoughts on how to use Google App Engine for the back end of Trustmap. I’m no expert on data and this may not make much sense if you’re not me.

From a data store perspective, a user’s immediate trustmap looks like:

class Trustmap(db.Model):
user = db.KeyProperty()
context = db.StringProperty()
users = db.ListProperty(db.Key)

Click to read more ...