목록로드맵/DB (4)
공대생 정리노트
Reference http://www.kyobobook.co.kr/product/detailViewEng.laf?mallGb=ENG&ejkGb=ENG&barcode=9781260084504 Database System Concepts - 교보문고 www.kyobobook.co.kr Storage DB에서 스토리지는 3가지로 나눌 수 있다. Volatile storage Non-Volatile storage Stable storage volatile storage volatile storage 안의 정보들은 시스템 크래시가 발생하면 일반적으로 살아남지 못한다. 메인 메모리나 캐시 메모리가 해당된다. volatile storage로의 접근은 굉장히 빠른데, 메모리 접근 자체가 그 자체로 빠를 뿐더러 vola..
https://docs.mongodb.com/manual/core/wiredtiger/ WiredTiger Storage Engine — MongoDB Manual Docs Home → MongoDB ManualStarting in MongoDB 3.2, the WiredTiger storage engine is the default storage engine. For existing deployments, if you do not specify the --storageEngine or the storage.engine setting, the version 3.2+ mongod instance can automa docs.mongodb.com WiredTiger Storage Engine WiredTig..
Reference https://docs.mongodb.com/manual/core/index-multikey/ Multikey Indexes — MongoDB Manual Docs Home → MongoDB ManualTo index a field that holds an array value, MongoDB creates an index key for each element in the array. These multikey indexes support efficient queries against array fields. Multikey indexes can be constructed over arrays that docs.mongodb.com https://docs.mongodb.com/manua..
참고 자료 https://www.youtube.com/watch?v=ZS_kXvOeQ5Y https://siyoon210.tistory.com/130 SQL Structured Query Language 특징 Strict, clear schema Relation 각 테이블에는 명확한 구조가 존재하고 구조는 필드와 데이터로 구성된다. 이 스키마를 만족시키지 못하는 레코드는 해당 테이블에 추가될 수 없다. 이런 특성 때문에 테이블에 필드를 추가하거나 바꾸기가 어렵다.(기존 데이터들을 바뀐 스키마를 만족시키기 위해 다 바꿔야 함) 또한 SQL은 Relation을 통하여 테이블끼리 연결시킨다. 이를 이용하면 각 테이블별로 데이터의 중복을 피할 수 있다. NoSQL 특징 No Schema No relation 스..