Hi, in my application I have per-user models, let me explain with a simple example:
class Item(db.Model):
master = db.ReferenceProperty(User,collection_name="items")
name = db.StringProperty()
description = db.StringProperty()
value = db.StringProperty()
def __unicode__(self):
return u"%s"%self.name
So I can store informations on the database only if the user is authenticated. ( well, only if there is an user)
I'm looking for a way to let the anonymous/temporary users to register "personal items" in the session that expires after a certain amount of time.
Any idea?