我在 mongodb 中有一个文档,其中包含这样的地图:
{
"name": "Document 1",
"attrinutes": {
"key1": "value1",
"key2": "value2",
"key3": "value3"
}
}
如果我在这样的属性上创建索引:
db.ensureIndex ({"attributes":-1})
索引会是什么样子,什么类型的查询会使用这个索引?