有没有办法在 shell 中查看 mongodb 中集合的索引列表?我通读了http://www.mongodb.org/display/DOCS/Indexes但我什么也没看到
问问题
35023 次
7 回答
149
从外壳:
db.test.getIndexes()
对于 shell 帮助,您应该尝试:
help;
db.help();
db.test.help();
于 2010-05-07T22:52:22.127 回答
31
如果要列出集合中的所有索引:
db.getCollectionNames().forEach(function(collection) {
indexes = db.getCollection(collection).getIndexes();
print("Indexes for " + collection + ":");
printjson(indexes);
});
于 2015-08-26T15:26:38.907 回答
13
如果您想获取数据库中所有索引的列表:
use "yourdbname"
db.system.indexes.find()
于 2013-03-20T21:59:19.133 回答
11
确保您使用您的收藏:
db.collection.getIndexes()
http://docs.mongodb.org/manual/administration/indexes/#information-about-indexes
于 2013-01-18T17:50:51.273 回答
6
您还可以输出所有索引及其大小:
db.collectionName.stats().indexSizes
还要检查它是否db.collectionName.stats()
为您提供了许多有趣的信息,例如 paddingFactor、集合的大小和其中的元素数量。
于 2013-10-31T05:41:19.910 回答
4
更进一步,如果您想查找所有集合上的所有索引,此脚本(此处从 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);
});
});
});
于 2016-07-13T17:51:24.660 回答
0
在此处使用旧版本的 MongoDB,但此处此问题的最佳答案之一对我不起作用。这个有效:
db.getCollectionNames().forEach(function(collection) {
print("Collection: '" + collection);
print(db.getCollection(collection).getIndexes())
});
于 2021-09-09T08:58:08.637 回答