如何为 google 数据存储使用类似于 firestore 的嵌套?

How to use nesting similar to firestore for google datastore?

我之前使用过 firestore,我们可以将 documents 保存在集合中,将集合保存在文档中。 googledatastore kind类似于collection,entity类似于document,kind里面怎么保存kind?

对于 Firestore

collection
   - document
     - collection
       - document
         .... so on

如何为 Google Datastore 实现此目标?

kind
   - entity
     - kind
       - entity
         .... so on

Datastore 的文档非常好

Ancestor paths 上的文档开始,了解父实体和子实体。

在构建数据库时要小心确保您了解 Datastore 中存在的权衡。参见 Limits

根据您的语言|运行时,ndb for Python3 等工具提供数据存储的抽象。我没有使用过其中任何一个,但 ndb 曾经非常受 App Engine 开发人员(使用数据存储区)的欢迎,这些可能会抽象出处理数据存储区中实体的一些复杂性。