You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+9-12
Original file line number
Diff line number
Diff line change
@@ -26,21 +26,18 @@ You don't have to write any additional code, explore the internals of the Spring
26
26
Just add a maven dependency to your project and declare the `@AutoConfigureEmbeddedDatabase` annotation on a test class and that's all!
27
27
You can check out the [quick start](#quick-start) section for more information.
28
28
29
-
### High Performance
29
+
### Migration Caching
30
30
31
-
This library uses [template databases](https://www.postgresql.org/docs/current/manage-ag-templatedbs.html) instead of spinning up multiple [Docker containers](https://www.baeldung.com/spring-boot-testcontainers-integration-test#1-one-database-per-test-with-configuration) to make tests isolated.
32
-
That means that all databases are stored in a single container. This has two main implications.
33
-
The first is that the creation of the second and any subsequent empty database is almost instant,
34
-
as the library can reuse the existing container instead of wasting time by starting another one.
31
+
The library can cache Flyway and Liquibase migrations in template databases, which means database migrations typically need to be executed only once,
32
+
regardless of how many tests use the database. This dramatically reduces initialization time in projects with complex migration scripts.
35
33
36
-
The second is that storing all databases in a single container makes it possible to efficiently transfer or share data across databases.
37
-
This is the main prerequisite for the [refresh mode](#refreshing-the-database-during-tests),
38
-
which can make a fast binary copy of the database (using a [template database](https://www.postgresql.org/docs/current/manage-ag-templatedbs.html) if possible)
39
-
before the test is started to make the test completely isolated from other tests, even if changes have been committed to the database.
40
-
This approach effectively rolls back any changes made by the test and ensures that even refreshing larger databases takes only a few milliseconds.
34
+
### Efficient Database Isolation
41
35
42
-
In addition, there are some other optimization techniques to increase overall performance,
43
-
such as [database prefetching](#database-prefetching) or [background bootstrapping mode](#background-bootstrapping-mode).
36
+
Using template databases enables fast binary copying of database state. This allows the [refresh mode](#refreshing-the-database-during-tests)
37
+
to provide complete test isolation while keeping the refresh operation very fast (typically milliseconds), even for larger databases with committed changes.
38
+
The refresh functionality effectively rolls back any changes made during tests.
39
+
40
+
Additional performance features include [database prefetching](#database-prefetching) and [background bootstrapping mode](#background-bootstrapping-mode).
0 commit comments