我正在阅读Google应用引擎并准备样本以更好地理解它。
简而言之,用户可以记录每月中每天的条目,例如日历。 用户可以按月查看条目。所以一次不超过30个。
最初我使用过db
,而且一对多的关系很直接。
但是当我遇到ndb
时,我意识到有两种方法可以建立一对多的关系。
1)结构化属性似乎就像User模型上的重复属性一样。这是否意味着如果我检索一个用户,我会自动检索她输入的所有记录? (例如整整一年)虽然这不是很有效,是吗?我想这样做的好处是你可以在一次读取操作中获得所有相关数据。
from google.appengine.ext import ndb
class User(UserMixin, ndb.Model):
email = ndb.StringProperty(required = True)
password_hash = ndb.TextProperty(required = True)
record = ndb.StructuredProperty(Record, repeated=True)
class Record(ndb.Model):
notes = ndb.TextProperty()
2)或者我可以使用更经典的方式:
class User(UserMixin, ndb.Model):
email = ndb.StringProperty(required = True)
password_hash = ndb.TextProperty(required = True)
class Record(ndb.Model):
user = ndb.KeyProperty(kind=User)
notes = ndb.TextProperty()
在我的用例中哪种方式更好?
答案 0 :(得分:8)
使用StructuredProperty而不是KeyProperty的缺点是,对于StructuredProperty,总实体大小(1MB)的限制适用于用户及其包含的所有记录的总和(因为结构化属性被序列化为用户实体的一部分) 。使用KeyProperty,每个记录本身都有1MB的限制。