查询 mongodb 中的嵌入文档数组

Query an array of embedded documents in mongodb

我在编写需要将给定值与数组中 所有 嵌入式文档中的特定字段进行比较的查询时遇到了一些麻烦。我举个例子让问题不那么抽象。

假设我想使用 MongoDB 来存储我网络上的用户在不同在线搜索引擎中输入的最后查询。集合中的条目将具有如下结构:

{
    '_id' : 'zinfandel', 
    'last_search' : [
        {
            'engine' : 'google.com',
            'query' : 'why is the sky blue' 
        },
        {
            'engine' : 'bing.com', 
            'query' : 'what is love'
        },
        {   'engine' : 'yahoo.com',
            'query' : 'how to tie a tie'
        }
    ]
}

现在假设用户 username 在某个 engine 中输入一个新的 query。将此查询存储在数据库中的代码需要查明是否已经存在用户使用的引擎的条目。如果是,则此条目将用新查询更新。如果没有,则应创建一个新条目。我的想法是仅当给定引擎没有条目时才执行 $push,否则执行 $set。为此,我试着这样写我的推送:

db.mycollection.update(
    { '_id' : username , search.$.engine : { '$ne' : engine } },
    { '$push' : { 'search.$.engine' : engine, 'search.$.query' : query } }
) 

但是,即使给定的 引擎 已经有一个条目,这也会推送一个新的嵌入文档。问题似乎是 $ne 运算符不能像我期望的那样处理数组。我需要的是确保数组中 没有单个 嵌入文档具有与指定引擎匹配的 "engine" 条目的方法。

有人知道怎么做吗?请告诉我是否需要进一步澄清问题...

您可以使用以下命令将项目推入数组:

db.mycollection.update({
    _id: "zinfandel", 
    "last_search.engine": {
        $nin: ["notwellknownengine.com"]
    }
}, {
    $push: {
        "last_search": {
            "engine" : "notwellknownengine.com", 
            "query" : "stackoveflow.com"
        }
    }
});