4

我需要在 MongoDB 查询中实现 fieldValue.contains("someString") 搜索吗?

我找到的解决方案是

db.main.find(  { $where: "this.content.indexOf('someString') != -1" } );

它适用于查找功能。

但是当我在聚合函数中做同样的事情时

db.foo.aggregate(
    {
        $match: 
                { $where: "this.content.indexOf('someString') != -1" }
    },
    {
        $project :
                {
                    _id : 1,
                    words : 1
                }
    },
    {
        $unwind : "$words"
    },
    {
        $group : {
                    _id : { tags : "$words" },
                    count : { $sum : 1 }
                }
    },
    {
        $sort: {count:-1}
    },
    {
        $limit : 5
    }
);

我得到了这个结果:

{
        "errmsg" : "exception: $where is not allowed inside of a $match aggregation expression",
        "code" : 16395,
        "ok" : 0
}

问题:如何在 MongoDB 中编写适用于查找和聚合函数的 fieldValue.contains("someString") 查询。

4

1 回答 1

9

You can use a regular expression for that:

$match: { content: /someString/ }

You should use a regular expression instead of a $where for the find case, too, as it's more efficient.

db.main.find( { content: /someString/ } );
于 2012-10-12T19:56:56.510 回答