like one forum has many topic ,
ths specific is : forum and topic has the same model :
class Geo(db.Model):
#self = db.SelfReferenceProperty()
title = db.StringProperty()
link = db.StringProperty()
updated = db.DateTimeProperty(auto_now =True)
author = db.ReferenceProperty(MyUser)
id = db.StringProperty()
entry_keys = db.ListProperty(db.Key)
summary = db.StringProperty(multiline=True)
point = db.StringProperty()
@property
def entry(self):
return [db.get(key) for key in self.entry_keys]
all they are a geo-rss format , i use ListProperty this place ,but ListProperty has max size ,
so i have to find other method,
so what i should do ,
thanks