Connection Pooling - CI/CD用語集の定義
Connection pooling は、限られた数のデータベース接続を開いたまま維持し、要求に応じてリクエストへ手渡すことで、接続の確立と切断というクエリごとのオーバーヘッドを排除します。
関連ガイド
Prepared Statement - CI/CD Glossary DefinitionA prepared statement is a pre-parsed SQL template with bound parameters, reused across executions - it speeds…
Read Replica - CI/CD Glossary DefinitionA read replica is a copy of a database that serves read-only queries, offloading traffic from the primary and…
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,…