Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions docs/pages/getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -327,6 +327,14 @@ $hotelRepository = $repositoryManager->get(Hotel::class);
!!! note

You can find out more about stores [here](store.md).

!!! note

The `RunSubscriptionEngineRepositoryManager` is a decorator that triggers the
Subscription Engine when an Aggregate is saved. Normally, you'd use the
`DefaultRepositoryManager` and a worker to run the Subscription Engine.

Learn more [here](subscription.md).

## Database setup

Expand Down
6 changes: 3 additions & 3 deletions docs/pages/subscription.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ final class ProfileProjector
```
!!! warning

MySQL and MariaDB don't support transactions for DDL statements.
PostgreSQL, MySQL and MariaDB don't support transactions for DDL statements.
So you must use a different database connection for your subscriptions.

!!! tip
Expand Down Expand Up @@ -327,7 +327,7 @@ final class ProfileProjector
```
!!! danger

MySQL and MariaDB don't support transactions for DDL statements.
PostgreSQL, MySQL and MariaDB don't support transactions for DDL statements.
So you must use a different database connection in your projectors,
otherwise you will get an error when the subscription tries to create the table.

Expand Down Expand Up @@ -368,7 +368,7 @@ final class ProfileProjector
```
!!! danger

MySQL and MariaDB don't support transactions for DDL statements.
PostgreSQL, MySQL and MariaDB don't support transactions for DDL statements.
So you must use a different database connection in your projectors,
otherwise you will get an error when the subscription tries to create the table.

Expand Down
Loading