GAE:不在类中的子对象

发布于 2024-09-25 09:39:41 字数 379 浏览 1 评论 0原文

我正在尝试复制 在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

走过海棠暮 2024-10-02 09:39:41

在实体组的上下文中,“子”表示 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文