MongoDB中的索引列表?


Answers:


143

从外壳:

db.test.getIndexes()

对于外壳帮助,您应该尝试:

help;
db.help();
db.test.help();

16

如果要列出所有索引:

db.getCollectionNames().forEach(function(collection) {
   indexes = db.getCollection(collection).getIndexes();
   print("Indexes for " + collection + ":");
   printjson(indexes);
});

1
这真的很有帮助。
阿德里安·卡尔



5

您还可以输出所有索引及其大小:

db.collectionName.stats().indexSizes

还要检查一下是否db.collectionName.stats()为您提供了很多有趣的信息,例如paddingFactor,集合的大小以及其中的元素数量。


3

更进一步,如果您想在所有集合中找到所有索引,此脚本(从Juan Carlos Farah的脚本进行了修改)可为您提供一些有用的输出,包括索引详细信息的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);
         });


    });

});

这确实很有帮助,但是我认为printjson(indexes);应该如此printjson(idx);
Curt Williams
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.