MongoDB의 인덱스 목록? 셸에서 mongodb 컬렉션의 인덱스 목록을 볼 수 있는 방법이 있나요? http://www.mongodb.org/display/DOCS/Indexes에서 읽었는데 아무것도 보이지 않습니다.셸에서: db.test.getIndexes() 셸 도움말의 경우 다음을 시도해 보십시오. help; db.help(); db.test.help(); 컬렉션 전체의 모든 인덱스를 나열하는 경우: db.getCollectionNames().forEach(function(collection) { indexes = db.getCollection(collection).getIndexes(); print("Indexes for " + collection + ":"); printjson(indexes..