diff --git a/spring-boot-dependencies/pom.xml b/spring-boot-dependencies/pom.xml
index a44df9699b..f21fc31594 100644
--- a/spring-boot-dependencies/pom.xml
+++ b/spring-boot-dependencies/pom.xml
@@ -291,6 +291,11 @@
spring-boot-starter-data-mongodb
1.4.0.BUILD-SNAPSHOT
+
+ org.springframework.boot
+ spring-boot-starter-data-redis
+ 1.4.0.BUILD-SNAPSHOT
+
org.springframework.boot
spring-boot-starter-data-rest
@@ -386,11 +391,6 @@
spring-boot-starter-mustache
1.4.0.BUILD-SNAPSHOT
-
- org.springframework.boot
- spring-boot-starter-redis
- 1.4.0.BUILD-SNAPSHOT
-
org.springframework.boot
spring-boot-starter-remote-shell
diff --git a/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc b/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc
index 7aa7582164..54b2a2ba3c 100644
--- a/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc
+++ b/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc
@@ -2711,7 +2711,7 @@ http://redis.io/[Redis] is a cache, message broker and richly-featured key-value
Spring Boot offers basic auto-configuration for the
https://github.com/xetorthio/jedis/[Jedis] client library and abstractions on top of it
provided by https://github.com/spring-projects/spring-data-redis[Spring Data Redis]. There
-is a `spring-boot-starter-redis` '`Starter POM`' for collecting the dependencies in a
+is a `spring-boot-starter-data-redis` '`Starter POM`' for collecting the dependencies in a
convenient way.
diff --git a/spring-boot-docs/src/main/asciidoc/using-spring-boot.adoc b/spring-boot-docs/src/main/asciidoc/using-spring-boot.adoc
index c2a414ea8b..2dd8791e70 100644
--- a/spring-boot-docs/src/main/asciidoc/using-spring-boot.adoc
+++ b/spring-boot-docs/src/main/asciidoc/using-spring-boot.adoc
@@ -416,6 +416,9 @@ and Hibernate.
|`spring-boot-starter-data-mongodb`
|Support for the MongoDB NoSQL Database, including `spring-data-mongodb`.
+|`spring-boot-starter-data-redis`
+|Support for the REDIS key-value data store, including `spring-data-redis`.
+
|`spring-boot-starter-data-rest`
|Support for exposing Spring Data repositories over REST via `spring-data-rest-webmvc`.
@@ -458,9 +461,6 @@ and Hibernate.
|`spring-boot-starter-mustache`
|Support for the Mustache templating engine.
-|`spring-boot-starter-redis`
-|Support for the REDIS key-value data store, including `spring-redis`.
-
|`spring-boot-starter-security`
|Support for `spring-security`.
diff --git a/spring-boot-samples/spring-boot-sample-cache/README.adoc b/spring-boot-samples/spring-boot-sample-cache/README.adoc
index bbce5605f8..5a44d740e4 100644
--- a/spring-boot-samples/spring-boot-sample-cache/README.adoc
+++ b/spring-boot-samples/spring-boot-sample-cache/README.adoc
@@ -79,7 +79,7 @@ can set the `spring.cache.infinispan.config` property to use the provided
=== Redis
-Add the `spring-boot-starter-redis` and make sure it is configured properly (by default,
+Add the `spring-boot-starter-data-redis` and make sure it is configured properly (by default,
a redis instance with the default settings is expected on your local box).
diff --git a/spring-boot-samples/spring-boot-sample-cache/pom.xml b/spring-boot-samples/spring-boot-sample-cache/pom.xml
index a30e0033b0..e54fb39323 100644
--- a/spring-boot-samples/spring-boot-sample-cache/pom.xml
+++ b/spring-boot-samples/spring-boot-sample-cache/pom.xml
@@ -71,7 +71,7 @@