반응형
인덱스 기본 생성
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})
'graphql + flutter' 카테고리의 다른 글
[mongodb] 데이터 조회,논리검색 (0) | 2023.12.15 |
---|---|
[mongodb] collection의 특정 컬럼에 fulltext index 걸기 (0) | 2023.12.15 |
[mongodb] db 접속 (0) | 2023.12.15 |
[mongodb] collection (0) | 2023.11.07 |
node.js 앱 재실행 [forever] (0) | 2023.11.04 |