是否有可以传递到 firestore.getAll() 的最大数量的 documentRef
在 Google SDK 文档中,firestore.getAll() 命令采用文档引用并返回一个 来自数据存储区的文档快照。
我还没有找到可以传入的 documentRefs
数量的最大值。我们已经使用 420 个文档成功测试了这一点,但在我们的测试环境中没有任何更大的查询,并且希望在发布到生产之前验证最大值(如果有)。
In the Google SDK Documentation, the firestore.getAll() command takes document references and returns an array of document snapshots from the datastore.
I haven't found any maximums for the number of documentRefs
which can be passed in. We have tested this successfully with 420 documents, but don't have any larger queries in our test environments and would like to validate the maximum (if any) prior to releasing to production.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不会。根据文档数量,查询只会花费更多时间来解决。
No. The query would just take more time to resolve depending on number of documents.