建立索引后,我想查看索引的内容。以 MonboDB 文档中的示例为例:
{ "_id" : ObjectId("..."),
"name" : "Warm Weather",
"author" : "Steve",
"tags" : [ "weather", "hot", "record", "april" ] }
然后标签字段上的索引将具有以下值:
{ tags: "weather" }
{ tags: "hot" }
{ tags: "record" }
{ tags: "april" }
所以,我想运行一个命令,比如说,db.weather._tags_.find()
显示所述值。
问:这样的shell命令存在吗?或者有没有办法在 C++ 驱动程序中做到这一点?