我对Cloud Firestore的成本感到困惑。我想获取1000个文档的集合大小,但我并没有读取每个文档数据,所以花1000读还是1读会花掉我的钱?
db.collection(`users/${user}/followers`)
.get().catch(onErr).then(followers=> {
console.log('followers length: ', followers.size);
});
我在followers
馆藏中有1000个文档,因此您可以看到我只是在阅读馆藏的长度,所以要花多少钱? 1000读还是1读?
答案 0 :(得分:2)
如果在followers
集合中您有1000个文档,则将花费1000次读取。在这里,您将附加方法get()
,该方法将检索集合中的所有文档