ComputedProperty (ndb Datastore) 在 Firestore 本机模式下等效

ComputedProperty (ndb Datastore) equivalent in Firestore native mode

我们目前在 Google App Engine(python 2.7 标准)中有一个关于 ndb Datastore 的数据库。我们正计划迁移到 Firestore 本机模式。 ndb 中有一个功能 ComputedProperty - 在 Firestore Native 模式下我们有类似的东西吗?

原生模式下的 Cloud Firestore 不直接支持计算属性之类的东西。您可以改用客户端事务或云函数,例如 aggregation queries.