Skip to content

Commit 8d24e14

Browse files
authored
Update README.md
1 parent 3fcaf12 commit 8d24e14

File tree

1 file changed

+9
-12
lines changed

1 file changed

+9
-12
lines changed

README.md

+9-12
Original file line numberDiff line numberDiff line change
@@ -26,21 +26,18 @@ You don't have to write any additional code, explore the internals of the Spring
2626
Just add a maven dependency to your project and declare the `@AutoConfigureEmbeddedDatabase` annotation on a test class and that's all!
2727
You can check out the [quick start](#quick-start) section for more information.
2828

29-
### High Performance
29+
### Migration Caching
3030

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.
3533

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
4135

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).
4441

4542
### Context Caching
4643

0 commit comments

Comments
 (0)