diff --git a/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc b/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc
index acdd8a7007..d07227080e 100644
--- a/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc
+++ b/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc
@@ -3493,6 +3493,9 @@ in a convenient way. By default, it uses
https://github.com/lettuce-io/lettuce-core/[Lettuce]. That starter handles both
traditional and reactive applications.
+TIP: we also provide a `spring-boot-starter-data-redis-reactive` '`Starter`' for
+consistency with the other stores with reactive support.
+
[[boot-features-connecting-to-redis]]
diff --git a/spring-boot-project/spring-boot-starters/pom.xml b/spring-boot-project/spring-boot-starters/pom.xml
index 6f9a4da9a5..f0417082b5 100644
--- a/spring-boot-project/spring-boot-starters/pom.xml
+++ b/spring-boot-project/spring-boot-starters/pom.xml
@@ -35,6 +35,7 @@
spring-boot-starter-data-mongodb-reactive
spring-boot-starter-data-neo4j
spring-boot-starter-data-redis
+ spring-boot-starter-data-redis-reactive
spring-boot-starter-data-rest
spring-boot-starter-data-solr
spring-boot-starter-freemarker
diff --git a/spring-boot-project/spring-boot-starters/spring-boot-starter-data-redis-reactive/pom.xml b/spring-boot-project/spring-boot-starters/spring-boot-starter-data-redis-reactive/pom.xml
new file mode 100644
index 0000000000..f94e28b0ce
--- /dev/null
+++ b/spring-boot-project/spring-boot-starters/spring-boot-starter-data-redis-reactive/pom.xml
@@ -0,0 +1,22 @@
+
+
+ 4.0.0
+
+ org.springframework.boot
+ spring-boot-starters
+ ${revision}
+
+ spring-boot-starter-data-redis-reactive
+ Spring Boot Data Redis Reactive Starter
+ Starter for using Redis key-value data store with Spring Data Redis
+ reactive and the Lettuce client
+
+ ${basedir}/../../..
+
+
+
+ org.springframework.boot
+ spring-boot-starter-data-redis
+
+
+
diff --git a/spring-boot-project/spring-boot-starters/spring-boot-starter-data-redis-reactive/src/main/resources/META-INF/spring.provides b/spring-boot-project/spring-boot-starters/spring-boot-starter-data-redis-reactive/src/main/resources/META-INF/spring.provides
new file mode 100644
index 0000000000..7c4aeabfda
--- /dev/null
+++ b/spring-boot-project/spring-boot-starters/spring-boot-starter-data-redis-reactive/src/main/resources/META-INF/spring.provides
@@ -0,0 +1 @@
+provides: spring-data-redis,lettuce-core
\ No newline at end of file