Tag: explain-analyze
All the articles with the tag "explain-analyze".
-
인덱스만 읽는다면서 왜 느릴까: Heap Fetches와 visibility map으로 보는 Index Only Scan
Index Scan과 Index Only Scan의 차이를 covering index와 visibility map 관점에서 풀고, Heap Fetches가 성능에 미치는 영향을 실측으로 정리한다.
@database @learning #postgresql #index-scan #index-only-scan #heap-fetches #visibility-map #explain-analyze -
트리는 아는데 인덱스는 왜 어려울까: 페이지·블록·슬롯으로 다시 보는 B+Tree
B-Tree/B+Tree가 어려운 이유를 트리 기초부터 다시 풀고, page/block/slot/TID를 연결해 인덱스 동작을 쉽게 설명한다.
@database @learning #postgresql #index #btree #b-plus-tree #explain-analyze #database-basics -
왜 인덱스가 있어도 느릴까: SQL 실행 원리와 실행계획 읽기
인덱스가 있어도 느릴 수 있는 이유, SQL 실행 흐름, 실행계획 읽는 법을 실습 예시와 함께 정리한다.
@database @learning #sql #optimizer #explain-analyze #query-plan #postgresql