-
[MongoDB] MongoDB 소개CSE/MongoDB 2015. 6. 13. 11:33MongoDB is a cross-platform document-oriented database. Classified as a NoSQL database, MongoDB eschews the traditional table-based relational database structure in favor of JSON-like documents with dynamic schemas(MongoDB calls the format BSON), making the integration of data in certain types of applications easier and faster. Released under a combination of the GNU Affero General Public License and the Apache License, MongoDB is free and open-source software.
MongoDB has been adopted as backend software by a number of major websites and services, including Brave Collective, Craigslist, eBay, Foursquare, SourceForge, Viacom, and the New York Times, among others. MongoDB is the most popular NoSQL database system.
주요 특징
- Document-Oriented Storage : 모든 데이터가 JSON 형태로 저장되며 schema가 없습니다.
- Full Index Support : RDBMS에 뒤지지 않는 다양한 인덱싱을 제공합니다.
- Replication & High Availability : 데이터 복제를 통해 가용성을 향상시킬 수 있습니다.
- Auto-Sharding : Primary key를 기반으로 여러 서버에 데이터를 나누는 scale-out이 가능합니다.
- Querying : key 기반의 get, put 뿐만이 아니라 다양한 종류의 쿼리들을 제공합니다.
- Fast In-Place Updates : 고성능의 atomic operation을 지원합니다.
- Map/Reduce : 맵리듀스를 지원합니다.
- GridFS : 별도 스토리지 엔진을 통해 파일을 저장할 수 있습니다.'CSE > MongoDB' 카테고리의 다른 글
[MongoDB] 4. 집계 연산 질의(Map Reduce) (0) 2015.06.13 [MongoDB] 3. 세션관리자 제작 (0) 2015.06.13 [MongoDB] 2-1. 몽고DB를 사용한 첫 웹 애플리케이션 제작 (0) 2015.06.13 [MongoDB] 2. 몽고DB를 사용한 첫 웹 애플리케이션 제작 (0) 2015.06.13 [MongoDB] 2번째 장 들어가기 전... 개념 정리 (0) 2015.06.13 [MongoDB] 1. MongoDB 시작하기 (0) 2015.06.13