Index Scan - CI/CD用語集の定義
インデックススキャンは、データベースのインデックスを使って、すべての行を読むことなく述語に一致する行を特定します。選択性の高いクエリでは、full table scanよりもはるかに低コストです。
関連ガイド
Full Table Scan - CI/CD Glossary DefinitionA full table scan reads every row in a table to satisfy a query. Fine for small tables, but a common bottlene…
Query Plan - CI/CD Glossary DefinitionA query plan is the step-by-step strategy a database picks to execute a SQL statement - which indexes, joins,…
N+1 Query - CI/CD Glossary DefinitionThe N+1 query problem is running one query to fetch a list, then one extra query per item - turning a page lo…