반응형
collection 생성
db.createCollection(collection, [options])
db.createCollection(collection, { capped:false, autoIndexId: true })
capped : 컬렉션의 고정 크기 지정하여 초과하면 오래된 데이터 부터 제거 true 로 설정하면 size 값 설정 필요
타입: Boolean 기본값:false
size : capped 값이 true 일경우 collection 의 최대 크기 지정(byte)
max : collection 에 추가할수 있는 최대 document 값
autoIndexId : _id 필드에 index를 자동생성 기본값: false
collection 삭제
db.collection.drop()
document 추가
db.collection.insert({"score": 80, "indexRating": {"index": "tomato", "rate": 7.8}})
'graphql + flutter' 카테고리의 다른 글
[mongodb] 데이터 조회,논리검색 (0) | 2023.12.15 |
---|---|
[mongodb] collection의 특정 컬럼에 fulltext index 걸기 (0) | 2023.12.15 |
[mongodb] db 접속 (0) | 2023.12.15 |
[mongodb] index 생성 조회 (0) | 2023.11.07 |
node.js 앱 재실행 [forever] (0) | 2023.11.04 |