通过单个网络调用在 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中文网其他相关文章!