From 800d65034134703cc608f24ff4bc4375b4e62b13 Mon Sep 17 00:00:00 2001 From: Nikita Koksharov <mrniko@users.noreply.github.com> Date: Wed, 5 Dec 2018 22:13:01 +0300 Subject: [PATCH 1/4] Update README.md --- redisson-spring-boot-starter/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/redisson-spring-boot-starter/README.md b/redisson-spring-boot-starter/README.md index 384965187..1e91dc9d0 100644 --- a/redisson-spring-boot-starter/README.md +++ b/redisson-spring-boot-starter/README.md @@ -46,6 +46,8 @@ Usage ### 2. Add settings into `application.settings` file +Common spring boot settings or Redisson settings could be used. + ```properties # common spring boot settings From 1ccab3f94f5890c5f31a0f95cd959ce16b0fc54b Mon Sep 17 00:00:00 2001 From: Nikita Koksharov <mrniko@users.noreply.github.com> Date: Thu, 6 Dec 2018 00:49:11 +0300 Subject: [PATCH 2/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ae1bbea14..567907985 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -Redisson: Redis based In-Memory Data Grid for Java.<br/> State of the Art Redis client +Redisson: Redis based In-Memory Data Grid for Java.<br/> State of the Art Redis Java client ==== [Quick start](https://github.com/redisson/redisson#quick-start) | [Documentation](https://github.com/redisson/redisson/wiki) | [Javadocs](http://www.javadoc.io/doc/org.redisson/redisson/3.8.2) | [Changelog](https://github.com/redisson/redisson/blob/master/CHANGELOG.md) | [Code examples](https://github.com/redisson/redisson-examples) | [FAQs](https://github.com/redisson/redisson/wiki/16.-FAQ) | [Report an issue](https://github.com/redisson/redisson/issues/new) | **[Redisson PRO](https://redisson.pro)** From cede9e6b5125586d890d84a3c2da22d046f6df99 Mon Sep 17 00:00:00 2001 From: Nikita Koksharov <mrniko@users.noreply.github.com> Date: Thu, 6 Dec 2018 00:50:21 +0300 Subject: [PATCH 3/4] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 567907985..edccc40b8 100644 --- a/README.md +++ b/README.md @@ -137,14 +137,14 @@ Config = ... // 2. Create Redisson instance RedissonClient redisson = Redisson.create(config); -// 3. Get object you need +// 3. Get Redis based object or service you need RMap<MyKey, MyValue> map = redisson.getMap("myMap"); RLock lock = redisson.getLock("myLock"); RExecutorService executor = redisson.getExecutorService("myExecutorService"); -// over 30 different objects and services ... +// over 30 different Redis based objects and services ... ``` From ddb763b7ff4e0106fe6e704bf5d23d3fbdb7fac7 Mon Sep 17 00:00:00 2001 From: Nikita Koksharov <mrniko@users.noreply.github.com> Date: Thu, 6 Dec 2018 01:09:38 +0300 Subject: [PATCH 4/4] Update README.md --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index edccc40b8..936e10059 100644 --- a/README.md +++ b/README.md @@ -12,17 +12,17 @@ Based on high-performance async and lock-free Java Redis client and [Netty](http Features ================================ -* Replicated servers mode (also supports [AWS ElastiCache](http://docs.aws.amazon.com/AmazonElastiCache/latest/UserGuide/Replication.html) and [Azure Redis Cache](https://azure.microsoft.com/en-us/services/cache/)): +* Replicated Redis servers mode (also supports [AWS ElastiCache](http://docs.aws.amazon.com/AmazonElastiCache/latest/UserGuide/Replication.html) and [Azure Redis Cache](https://azure.microsoft.com/en-us/services/cache/)): 1. automatic master server change discovery -* Cluster servers mode (also supports [AWS ElastiCache Cluster](http://docs.aws.amazon.com/AmazonElastiCache/latest/UserGuide/Clusters.html) and [Azure Redis Cache](https://azure.microsoft.com/en-us/services/cache/)): +* Clustered Redis servers mode (also supports [AWS ElastiCache Cluster](http://docs.aws.amazon.com/AmazonElastiCache/latest/UserGuide/Clusters.html) and [Azure Redis Cache](https://azure.microsoft.com/en-us/services/cache/)): 1. automatic master and slave servers discovery 2. automatic status and topology update 3. automatic slots change discovery -* Sentinel servers mode: +* Sentinel Redis servers mode: 1. automatic master, slave and sentinel servers discovery 2. automatic status and topology update -* Master with Slave servers mode -* Single server mode +* Master with Slave Redis servers mode +* Single Redis server mode * Thread-safe implementation * [Reactive Streams](https://github.com/redisson/redisson/wiki/3.-operations-execution#32-reactive-way) API * [Asynchronous](https://github.com/redisson/redisson/wiki/3.-operations-execution#31-async-way) API