在火库查询中是否有效?

发布于 2025-01-24 02:05:26 字数 928 浏览 0 评论 0原文

我设计了这样的数据模型

”在此处输入图像说明” 那里有一个用户集合,该集合具有一个字段存储的订单ID数组。

当我想要有关该特定用户的所有订单的信息时,我会使用这些ID从Collection 订单获取数据。通过使用其中,

List<String> orderIds = (await FirebaseFirestore.instance
        .collection('')
        .doc(QnRWjhJbjViKUEVBvRAr)
        .get()).get('orders');
var result = FirebaseFirestore.instance
        .collection('orders')
        .where(FieldPath.documentId, whereIn: orderIds)
        .get();

我只是好奇。 <代码>其中 effiecient吗?它是否检查订单中的每个文档,并测试该ID是否在OrderIDS中?如果是这样,那么当有更多数据(假设数百万)时,这是否会出现性能问题吗?

I design a data model like this
enter image description here

enter image description here
there a users collection that has one field store array of order ids.

When I want information about all orders of that specific user, I use these ids to get data from collection orders. by using whereIn

List<String> orderIds = (await FirebaseFirestore.instance
        .collection('')
        .doc(QnRWjhJbjViKUEVBvRAr)
        .get()).get('orders');
var result = FirebaseFirestore.instance
        .collection('orders')
        .where(FieldPath.documentId, whereIn: orderIds)
        .get();

I just curious. Is whereIn effiecient? Does it check every single document in orders and test if that id is in orderIds? If that true, when there're more data (let say millions) doesn't this will have performance issue?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

笑,眼淚并存 2025-01-31 02:05:26

Firestore具有非常清晰的性能保证:获得结果仅取决于您检索到的数据,并且完全独立于收集中存在的文档数量。因此,不,其中的性能不取决于集合的大小。

Firestore has a very clear performance guarantee: getting results only depends on the data you retrieve and is completely independent of the number of documents that exist in the collection(s) queried. So no, the performance of whereIn doesn't depend on the size of the collection.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文