有没有办法在shell中的mongodb中查看集合中的索引列表?我通读了http://www.mongodb.org/display/DOCS/Indexes,但我什么都没看到
答案 0 :(得分:139)
来自shell:
db.test.getIndexes()
对于shell帮助,您应该尝试:
help;
db.help();
db.test.help();
答案 1 :(得分:13)
如果您想获得数据库中所有索引的列表:
use "yourdbname"
db.system.indexes.find()
答案 2 :(得分:10)
确保使用您的收藏品:
db.collection.getIndexes()
http://docs.mongodb.org/manual/administration/indexes/#information-about-indexes
答案 3 :(得分:7)
如果要列出所有索引:
db.getCollectionNames().forEach(function(collection) {
indexes = db[collection].getIndexes();
print("Indexes for " + collection + ":");
printjson(indexes);
});
答案 4 :(得分:2)
更进一步,如果你想在所有集合中找到所有索引,这个脚本(从Juan Carlos Farah的脚本here修改)会给你一些有用的输出,包括索引的JSON打印输出细节:
// Switch to admin database and get list of databases.
db = db.getSiblingDB("admin");
dbs = db.runCommand({ "listDatabases": 1}).databases;
// Iterate through each database and get its collections.
dbs.forEach(function(database) {
db = db.getSiblingDB(database.name);
cols = db.getCollectionNames();
// Iterate through each collection.
cols.forEach(function(col) {
//Find all indexes for each collection
indexes = db[col].getIndexes();
indexes.forEach(function(idx) {
print("Database:" + database.name + " | Collection:" +col+ " | Index:" + idx.name);
printjson(indexes);
});
});
});