From 3bb5aae3f61e7fcdfb8cfe35776cf3f6ff60a4b4 Mon Sep 17 00:00:00 2001 From: Mark Paluch Date: Tue, 22 Mar 2016 11:59:59 +0100 Subject: [PATCH] DATAREDIS-483 - Update project page documentation. Update the Spring Data Redis project page with deprecation for SRP and jredis drivers, updated link to the lettuce driver, use HTTPS for GitHub links, Redis Sentinel and Redis Cluster, repository support. --- index.html | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index 434e48ed0..65e33562a 100644 --- a/index.html +++ b/index.html @@ -48,16 +48,19 @@ high-level abstractions for interacting with the store, freeing the user from in ## Features -* Connection package as low-level abstraction across multiple Redis drivers/connectors ([Jedis](http://github.com/xetorthio/jedis), [JRedis](https://github.com/alphazero/jredis), [Lettuce](http://github.com/wg/lettuce), and [SRP](http://github.com/spullara/redis-protocol)) +* Connection package as low-level abstraction across multiple Redis drivers/connectors ([Jedis](https://github.com/xetorthio/jedis) and [Lettuce](https://github.com/mp911de/lettuce). Support for [JRedis](https://github.com/alphazero/jredis),[SRP](https://github.com/spullara/redis-protocol) is deprecated.) * [Exception translation](http://docs.spring.io/spring-data/data-redis/docs/current/reference/html/#redis:connectors) to Spring's portable Data Access exception hierarchy for Redis driver exceptions * [RedisTemplate](http://docs.spring.io/spring-data/data-redis/docs/current/reference/html/#redis:template) that provides a high level abstraction for performing various Redis operations, exception translation and serialization support * [Pubsub](http://docs.spring.io/spring-data/data-redis/docs/current/reference/html/#pubsub) support (such as a MessageListenerContainer for message-driven POJOs) +* [Redis Sentinel](http://docs.spring.io/spring-data/data-redis/docs/current/reference/html/#redis:sentinel) and [Redis Cluster](http://docs.spring.io/spring-data/data-redis/docs/current/reference/html/#cluster) support * JDK, String, JSON and Spring Object/XML mapping [serializers](http://docs.spring.io/spring-data/data-redis/docs/current/reference/html/#redis:serializer) * JDK [Collection](http://docs.spring.io/spring-data/data-redis/docs/current/reference/html/#redis:support) implementations on top of Redis * Atomic [counter](http://docs.spring.io/spring-data/data-redis/docs/current/reference/html/#redis:support) support classes * Sorting and Pipelining functionality * Dedicated support for SORT, SORT/GET pattern and returned bulk values * Redis [implementation](http://docs.spring.io/spring-data/data-redis/docs/current/reference/html/#redis:support:cache-abstraction) for Spring 3.1 cache abstraction +* Automatic implementation of `Repository` interfaces including support for custom finder methods using `@EnableRedisRepositories` +* CDI support for repositories ## Quick Start