일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
- mesi
- nonblocking cache
- cache coherence
- ISA
- atomic exchange
- multibanekd cache
- dynamic scheduling
- theta join
- store conditional
- Subquery
- sequential consistency
- moesi
- cache coherence miss
- pipelined
- load linked
- transactional memory
- sql
- Cache
- relational model
- 관계형 모델
- dependence
- register renaming
- pipline hazards
- structural hazard
- branch prediction
- way prediction
- pipelined cache
- speculative execution
- directory based coherence protocol
- cache optimization
- Today
- Total
목록분류 전체보기 (32)
공대생의 공부흔적
참고: Database Systems: The Complete Book (2nd edition) 이번 글에서는 지난 글에서 살펴본 데이터 모델 중 관계형 모델에 대해 알아볼 것이다. 2024.03.07 - [Database & Big Data] - [DB#1] 데이터 모델 (Data Model)Basics/용어 정리Relation: 데이터를 포함하는 이차원 표Schema: relation 이름과 attribute의 집합 e.g. Movies(title, year, length, genre)Database schema: 데이터베이스의 relation을 위한 schema의 집합Tuple: 각 attribute별로 원소 하나씩을 포함하고 있다. e.g. (Star Wars, 1977, 124, sciFi)In..
참고: Database Systems: The Complete Book (2nd edition) 데이터 모델 데이터나 정보를 표현하기 위한 방법으로, 일반적으로 다음 세 부분으로 구성되어 있다. 데이터 구조: 데이터를 구현하기 위한 관념적 모델로서, array나 list와 같은 물리적 모델보다 높은 레벨을 의미 데이터 연산: 정보 회수를 위한 쿼리(query) 연산과 데이터베이스를 바꾸는 수정(modification) 연산만을 허용한다. 이러한 한계는 프로그래머가 데이터베이스 연산을 high level에서 표현할 수 있도록 해준다는 장점이 있다. 데이터 제약사항: 데이터가 가질 수 있는 형태에 대한 제약사항을 포함하는 경우가 많다. 범위 제한과 같은 단순한 조건에서부터 복잡한 조건까지 가질 수 있다. 이..