通常,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
凯文