Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- fork()
- PYTHON
- 인터럽트
- 알고리즘
- 부동소수점
- 우선순위
- 추상화
- concurrency
- 트랩
- 컴퓨터구조
- 페이징
- 스레드
- 스케줄링
- 페이지 대치
- ALU
- mips
- 단편화
- 세마포어
- Oracle
- Algorithm
- BOJ
- 페이지 부재율
- 가상 메모리
- 기아 상태
- 교착상태
- mutex
- 운영체제
- 백준
- 프로세스
- 동기화
Archives
- Today
- Total
목록data item (1)
봉황대 in CS
[Concurrency Control] Index-locking Protocol: The Way to Prevent Phantom Reads
* 본 글은 'Database System Concepts - 7th Edition(데이터베이스 시스템 7판)'을 바탕으로 작성하였습니다. What is phantom read ?i.e., Phantom phenomenon 이미 전 포스팅에서 다룬 개념이지만, 다시 명확하게 하는 겸 작성한다.https://eunajung01.tistory.com/166 두 개의 transaction, T_1과 T_2가 있다고 하자. 둘은 각각 다음과 같은 SQL을 실행한다.# T_1insert into instructor values(11111, 'Feynman', 'Physics', 94000);# T_2select count(*)from instructorwhere dept_name='Physics';T_2는 in..
Database
2024. 8. 12. 22:02