这是一个关于最新
Firebase Cloud Firestore的问题.在这个文档中,它说是这样的:
It also allows for expressive queries. Queries scale with the size of
your result set,not the size of your data set,so you’ll get the same
performance fetching 1 result from a set of 100,or 100,000,000.
这个陈述对我来说并不清楚.你能解释一下这个用例吗?
这可能写得有些混乱.它不是传统意义上的用例,只是关于Firestore性能的声明.
原文链接:https://www.f2er.com/angularjs/143251.html它基本上说如果你要求100.000.000中的100或1项中的1项无关紧要,它将同样快.这里1是你的结果集,100 / 100.000.000是你的数据集.因此,从100.000.000中请求1项将比请求100项中的50项更快.
我希望这会让它更清晰一些!