Skip to content

Commit

Permalink
Merge branch '3.4.x' into 3.5.x
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidBadura committed Sep 25, 2024
2 parents 054253d + cfbe678 commit 8b5e53c
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
2 changes: 2 additions & 0 deletions docs/mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,12 +55,14 @@ theme:
name: Switch to light mode

plugins:
- search:
- mike:
canonical_version: latest
- privacy:

markdown_extensions:
- meta
- pymdownx.details
- pymdownx.highlight:
anchor_linenums: true
extend_pygments_lang:
Expand Down
5 changes: 5 additions & 0 deletions docs/pages/aggregate.md
Original file line number Diff line number Diff line change
Expand Up @@ -360,6 +360,11 @@ final class Profile extends BasicAggregateRoot

## Child Aggregates

??? example "Experimental"

This feature is still experimental and may change in the future.
Use it with caution.

In some cases, it makes sense to split an aggregate into several smaller aggregates.
This can be the case if the aggregate becomes too large or if the aggregate is used in different contexts.
Child aggregates can be used for this purpose and work in the same way as the root aggregate.
Expand Down
5 changes: 5 additions & 0 deletions docs/pages/store.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,11 @@ The table structure of the `DoctrineDbalStore` looks like this:

### StreamDoctrineDbalStore

??? example "Experimental"

This feature is still experimental and may change in the future.
Use it with caution.

We offer a new experimental store called `StreamDoctrineDbalStore`.
This store is decoupled from the aggregate and can be used to store events from other sources.
The difference to the `DoctrineDbalStore` is that the `StreamDoctrineDbalStore` merge the aggregate id
Expand Down

0 comments on commit 8b5e53c

Please sign in to comment.