4

通常,MongoDB 不允许属性名称中包含点。例如:

db.books.insert({"protagonist.name": "Guy Montog"});

失败并出现错误:

uncaught exception: can't have . in field names [protagonist.name]

但是,我遇到了属性名称确实有点的情况。这可能发生在 system.profile 集合中。这是一个例子:

db.setProfilingLevel(2);
db.books.insert({protagonist: "Guy Montog", antecedents: 
  [{title: "The Fireman"}, {title: "Bright Phoenix"}]});
db.books.find({"antecedents.title": "The Fireman"})

现在,如果我查看 system.profile 集合,我会看到以下记录:

> db.system.profile.findOne({op: "query"})
{
    "ts" : ISODate("2012-10-14T00:05:49.896Z"),
    "op" : "query",
    "ns" : "wordswing.books",
    "query" : {
        "antecedents.title" : "The Fireman"
    },
    "nscanned" : 1,
    "nreturned" : 1,
    "responseLength" : 153,
    "millis" : 0,
    "client" : "127.0.0.1",
    "user" : ""
}

假设我想查询查询“antecedents.title”的for system.profile 文档?这似乎是一个问题,因为属性名称中有一个点。

我尝试了以下所有方法:

db.system.profile.find({'query.antecedents.title': 'The Fireman'})
db.system.profile.find({'query.antecedents\.title': 'The Fireman'})
db.system.profile.find({"query.antecedents\.title": 'The Fireman'})

这些都没有奏效。

想法?

这确实干扰了我浏览相当大的 system.profile 集合的能力。

提前致谢。

更新

回应评论,我使用的版本是:

$ mongod --version
db version v2.0.6, pdfile version 4.5
Sun Oct 14 18:43:29 git version: e1c0cbc25863f6356aa4e31375add7bb49fb05bc

凯文

4

1 回答 1

3

虚线查询的配置文件条目似乎确实是一个错误 .. MongoDB 中的键名并不意味着包含.(或前导$)。

正如您所注意到的,这会在尝试查询时导致您出现问题,因为点表示法用于指示嵌入的对象。

MongoDB 2.2.0 中的一个有限解决方法似乎是使用聚合框架将查询对象匹配为嵌入式文档:

db.system.profile.aggregate({ $match: {'query': {"antecedents.title" : "The Fireman"}}})

我在 MongoDB 的问题跟踪器中将这个分析错误报告为SERVER-7349

于 2012-10-14T02:28:22.467 回答