【发布时间】:2014-09-25 06:33:23
【问题描述】:
执行祖先查询时,每个祖先每秒只能写入一次。这适用于不同的实体种类还是相同的种类?
例如, https://cloud.google.com/appengine/docs/python/ndb/queries#ancestor
class Customer(ndb.Model):
name = ndb.StringProperty()
class Purchase(ndb.Model):
price = ndb.IntegerProperty()
class Order(ndb.Model):
shipping = ndb.StringProperty()
purchase1 = Purchase(parent=customer_entity.key)
order1 = Order(parent=customer_entity.key)
你能同时写信给采购和订单吗?
【问题讨论】:
标签: google-app-engine google-cloud-datastore