GAE:不在类中的子对象
我正在尝试复制 在 App Engine 上构建可扩展的复杂应用程序中描述的模式。我无法理解如何告诉 GAE 消息索引是消息的子项。 Google 表示您创建了一个子对象通过将其包含在父类中,但这正是我们想要防止的。那么如何将实体存储为子实体而不将其包含在父类中。
I am trying to duplicate the pattern described in Building Scalable, Complex Apps on App Engine. I am having trouble understanding how to tell GAE that Message index is a child of Message. From google, they say that you create a child object by including it in the parent class, but this is exactly what we are trying to prevent. So how do I store an entity as a child without including it in the parent class.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在实体组的上下文中,“子”表示 MessageIndex 的键是 Message 的键的后代。这并不意味着 MessageIndex 列表(或集合)是消息的属性。
有关如何在 Java 中执行此操作的示例,请参阅事务文档中标题为“使用实体组创建实体”的部分。
http://code.google.com/appengine/docs/java/datastore /交易.html
In the context of entity groups, 'child' means the MessageIndex's key is a descendant of the Message's key. It does not mean the MessageIndex list (or collection) is a property of the Message.
See the section titled "Creating Entities With Entity Groups" in documentation on transactions for an example of how to do this in Java.
http://code.google.com/appengine/docs/java/datastore/transactions.html