diff --git a/akka-docs/src/main/paradox/common/other-modules.md b/akka-docs/src/main/paradox/common/other-modules.md index 6b20aaf597..3d006f386e 100644 --- a/akka-docs/src/main/paradox/common/other-modules.md +++ b/akka-docs/src/main/paradox/common/other-modules.md @@ -28,15 +28,14 @@ Akka Projections let you process a stream of events or records from a source to An Akka Persistence journal and snapshot store backed by Apache Cassandra. -## [Couchbase Plugin for Akka Persistence](https://doc.akka.io/docs/akka-persistence-couchbase/current/) - -An Akka Persistence journal and snapshot store backed by Couchbase. - ## [JDBC Plugin for Akka Persistence](https://doc.akka.io/docs/akka-persistence-jdbc/current/) An Akka Persistence journal and snapshot store for use with JDBC-compatible databases. This implementation relies on [Slick](https://scala-slick.org/). +## [R2DBC Plugin for Akka Persistence](https://doc.akka.io/docs/akka-persistence-r2dbc/current/) + +An Akka Persistence journal and snapshot store for use with R2DBC-compatible databases. This implementation relies on [R2DBC](https://r2dbc.io/). ## [Google Cloud Spanner Plugin for Akka Persistence](https://doc.akka.io/docs/akka-persistence-spanner/current/) diff --git a/akka-docs/src/main/paradox/persistence-plugins.md b/akka-docs/src/main/paradox/persistence-plugins.md index 384eca6e3d..3156c50a37 100644 --- a/akka-docs/src/main/paradox/persistence-plugins.md +++ b/akka-docs/src/main/paradox/persistence-plugins.md @@ -7,8 +7,9 @@ A directory of persistence journal and snapshot store plugins is available at th Plugins maintained within the Akka organization are: * [akka-persistence-cassandra](https://doc.akka.io/docs/akka-persistence-cassandra/current/) -* [akka-persistence-couchbase](https://doc.akka.io/docs/akka-persistence-couchbase/current/) * [akka-persistence-jdbc](https://doc.akka.io/docs/akka-persistence-jdbc/current/) +* [akka-persistence-r2dbc](https://doc.akka.io/docs/akka-persistence-r2dbc/current/) +* [akka-persistence-spanner](https://doc.akka.io/docs/akka-persistence-spanner/current/) Plugins can be selected either by "default" for all persistent actors, or "individually", when a persistent actor defines its own set of plugins.