File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -327,6 +327,14 @@ $hotelRepository = $repositoryManager->get(Hotel::class);
327327!!! note
328328
329329 You can find out more about stores [here](store.md).
330+
331+ !!! note
332+
333+ The `RunSubscriptionEngineRepositoryManager` is a decorator that triggers the
334+ Subscription Engine when an Aggregate is saved. Normally, you'd use the
335+ `DefaultRepositoryManager` and a worker to run the Subscription Engine.
336+
337+ Learn more [here](subscription.md).
330338
331339## Database setup
332340
Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ final class ProfileProjector
7575```
7676!!! warning
7777
78- MySQL and MariaDB don't support transactions for DDL statements.
78+ PostgreSQL, MySQL and MariaDB don't support transactions for DDL statements.
7979 So you must use a different database connection for your subscriptions.
8080
8181!!! tip
@@ -327,7 +327,7 @@ final class ProfileProjector
327327```
328328!!! danger
329329
330- MySQL and MariaDB don't support transactions for DDL statements.
330+ PostgreSQL, MySQL and MariaDB don't support transactions for DDL statements.
331331 So you must use a different database connection in your projectors,
332332 otherwise you will get an error when the subscription tries to create the table.
333333
@@ -368,7 +368,7 @@ final class ProfileProjector
368368```
369369!!! danger
370370
371- MySQL and MariaDB don't support transactions for DDL statements.
371+ PostgreSQL, MySQL and MariaDB don't support transactions for DDL statements.
372372 So you must use a different database connection in your projectors,
373373 otherwise you will get an error when the subscription tries to create the table.
374374
You can’t perform that action at this time.
0 commit comments