Connection String - CI/CD用語集の定義
connection stringは、データベースへの到達方法(driver、host、port、名前、認証情報)をまとめたもので、多くの場合URLとして表現されます。
connection stringは、driver、host、port、データベース名、認証情報といったデータベースへの到達方法を1つにまとめた値で、多くの場合 postgres://user:pass@host:5432/db のようなURLとして表現されます。
CIでは、connection stringは通常secretや環境変数として注入され、同じテストコードがrunごとに使い捨てのデータベースを対象にできるようにします。
関連ガイド
Connection Pool - CI/CD Glossary DefinitionConnection Pool: A connection pool is a cache of reusable database connections that an application borrows an…
Test Database - CI/CD Glossary DefinitionTest Database: A test database is an isolated database instance used only by automated tests, so tests can re…