angular – 查询按结果集的大小缩放,而不是数据集的大小

前端之家收集整理的这篇文章主要介绍了angular – 查询按结果集的大小缩放,而不是数据集的大小前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
这是一个关于最新 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性能的声明.

它基本上说如果你要求100.000.000中的100或1项中的1项无关紧要,它将同样快.这里1是你的结果集,100 / 100.000.000是你的数据集.因此,从100.000.000中请求1项将比请求100项中的50项更快.

我希望这会让它更清晰一些!

原文链接:https://www.f2er.com/angularjs/143251.html

猜你在找的Angularjs相关文章