GH-795 - Documentation polishing.

This commit is contained in:
K. Siva Prasad Reddy
2024-09-04 14:38:07 +02:00
committed by Oliver Drotbohm
parent b95b0c0d7d
commit 498f72d5dc

View File

@@ -228,7 +228,7 @@ Using the transactional event publication log requires a combination of artifact
|MongoDB
|`spring-modulith-starter-mongodb`
|Using JDBC as persistence technology. Also enables MongoDB transactions and requires a replica set setup of the server to interact with. The transaction auto-configuration can be disabled by setting the `spring.modulith.events.mongobd.transaction-management.enabled` property to `false`.
|Using MongoDB as persistence technology. Also enables MongoDB transactions and requires a replica set setup of the server to interact with. The transaction auto-configuration can be disabled by setting the `spring.modulith.events.mongobd.transaction-management.enabled` property to `false`.
|Neo4j
|`spring-modulith-starter-neo4j`
@@ -270,7 +270,7 @@ dependencies {
This artifact contains two primary abstractions that are available to application code as Spring Beans:
* `CompletedEventPublications` -- This interface allows accessing all completed event publications, and provides an API to immediately purge all of them from the database or the completed publications older that a given duration (for example, 1 minute).
* `CompletedEventPublications` -- This interface allows accessing all completed event publications, and provides an API to immediately purge all of them from the database or the completed publications older than a given duration (for example, 1 minute).
* `IncompleteEventPublications` -- This interface allows accessing all incomplete event publications to resubmit either the ones matching a given predicate or older than a given `Duration` relative to the original publishing date.
[[publication-registry.publication-repositories]]