Skip to content

Commit c2ac01b

Browse files
authored
Merge pull request #851 from Brammm-forks/3.20.x
Updated docs a little
2 parents 90fabf0 + 366e019 commit c2ac01b

2 files changed

Lines changed: 11 additions & 3 deletions

File tree

docs/pages/getting_started.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff 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

docs/pages/subscription.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)