MongoDB (Ongoing)

써니·2021년 4월 1일
0

MongoDB

목록 보기
1/1

1. MongoDB is...

: C++로 작성된 오픈소스 문서지향적(document-oriented) Cross-platform 데이터베이스

  • NoSQL?
    : Not Only SQL = 기존의 RDMBS의 한계 극복 위해 새로운 형태로 만들어진 데이터 저장소 = 고정된 schema 및 JOIN이 존재 x

  • Document Oriented?
    : key-value pair

    • document는 동적 schema 보유: 같은 collection 안에 있는 document끼리 다른 schema 보유 가능
  • Collection?
    : MongoDB Document의 그룹 (document inside Collection)

  • Database?
    : Collection들의 물리적인 container

2. Data Modelling

  • schema 디자인 시 고려사항

https://velopert.com/436

0개의 댓글