소질없는 개발/MongoDB
MongoDB 모델링 패턴
모델링 패턴 1. Attribute 패턴 group화 시켜서 sub document 로 관리 동일 값의 타입을 가지는 여러 field 에 적용 https://www.mongodb.com/blog/post/building-with-patterns-the-attribute-pattern (영화 나라별 출시일) 2. Extended Reference 패턴 많은 조인이 반복적으로 수행될 때 사용 빠른 read join, lookup 축소 https://www.mongodb.com/blog/post/building-with-patterns-the-extended-reference-pattern (배송지) 3. Subset 패턴 자주 사용되는 데이터(필드)와 자주 사용되지 않는 데이터를 분리하여 관리 working..