使用$ addfields和$匹配的添加字段

发布于 2025-01-24 17:07:40 字数 722 浏览 0 评论 0原文

我正在尝试使用$ addfields在Mongo中运行总查询,并且$匹配

.aggregate([
        {
            $addFields: {
                level: { $sum: '$members.level' },
            },
        },
        {
            $match: {
                level: { $gte: level }
            },
        },
        {
            $project: {
                _id: 0,
                logo: 1,
                name: 1,
                level: 1,
                id: '$_id',
                joinType: 1,
                countryId: 1,
                minimumJoinLevel: 1,
                membersCount: { $size: '$members' },
            },
        },
    ])

该问题是该级别不是索引字段,并且在查询中已经计算出

我的问题:我如何有效地运行此查询,避免使用“ CollScan”和使其“ IXSCAN”执行

I am trying to run the aggregate query in Mongo using $addFields and $match

.aggregate([
        {
            $addFields: {
                level: { $sum: '$members.level' },
            },
        },
        {
            $match: {
                level: { $gte: level }
            },
        },
        {
            $project: {
                _id: 0,
                logo: 1,
                name: 1,
                level: 1,
                id: '$_id',
                joinType: 1,
                countryId: 1,
                minimumJoinLevel: 1,
                membersCount: { $size: '$members' },
            },
        },
    ])

The issue is that level is not an indexed field and has been calculated in the query

My question is: how I can run this query efficiently, avoid "COLLSCAN" and make it "IXSCAN" execution

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文