【发布时间】:2021-10-04 11:28:22
【问题描述】:
我无法找到在 python 中加入两个 Firestore 表的方法。有人知道这方面的信息吗?
【问题讨论】:
标签: python firebase google-cloud-firestore firebase-admin
我无法找到在 python 中加入两个 Firestore 表的方法。有人知道这方面的信息吗?
【问题讨论】:
标签: python firebase google-cloud-firestore firebase-admin
Firestore 没有服务器端连接的概念,无论您使用什么 SDK。
如果您想要来自多个集合的信息,您的选择是:
这两种方法都没有比另一种更好,但您大致是在交易数据重复而不是从您的应用程序中执行更多操作。
【讨论】: