首页 >web前端 >js教程 >如何通过一次网络调用高效检索多个 Firestore 文档?

如何通过一次网络调用高效检索多个 Firestore 文档?

Mary-Kate Olsen
Mary-Kate Olsen原创
2024-12-09 15:57:15531浏览

How Can I Efficiently Retrieve Multiple Firestore Documents with a Single Network Call?

通过单个网络调用在 Firestore 中检索多个文档

Firestore 提供了一种通过单次往返检索多个文档的有效方法。这可以在处理大量文档获取时显着优化性能。

Node.js 方法

在 Node.js 中,您可以使用 getAll() 方法检索多个文档:

const {Firestore} = require('@google-cloud/firestore');

const firestore = new Firestore();

const documentRefs = [
  firestore.doc('col/doc1'),
  firestore.doc('col/doc2'),
];

firestore.getAll(...documentRefs).then(docs => {
  docs.forEach(doc => {
    console.log(`Document: ${doc.id}, Data: ${JSON.stringify(doc.data())}`);
  });
});

此方法返回一个承诺,该承诺解析为包含结果文档的数组

查询支持

Cloud Firestore 现在支持 IN 查询,这提供了另一种检索多个文档的有效方法:

const inClause = firestore.FieldPath.documentId(), 'in', ["123", "456", "789"];

const query = firestore.collection('myCollection').where(inClause);
const docs = await query.get();

以上是如何通过一次网络调用高效检索多个 Firestore 文档?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn