인덱스 기본 생성 db.collection.createIndex(keys, options) keys string/object 값이 있는 필드 이름을 지정한다. 오름차순: 1, 내림차순: -1 options (unique 등등) { "score": 80, "indexRating": {"index": "tomato", "rate": 7.8} } 단일 키 db.collection.createIndex({ score: 1 }) 복합 키 db.collection.createIndex({ score: 1, index: 1 }) 인덱스 삭제하기 db.collection.dropIndex({index:1})