From 0549e570acede795159e2377b96a5b4f9bec6804 Mon Sep 17 00:00:00 2001 From: Andrew Lyu Date: Mon, 15 Apr 2019 16:23:57 +0800 Subject: [PATCH 1/6] Improve syntax highlighting --- redisson-hibernate/README.md | 58 +++++++++++++------------- redisson-spring-boot-starter/README.md | 13 +++--- redisson-spring-data/README.md | 20 ++++----- redisson-tomcat/README.md | 41 +++++++++--------- 4 files changed, 63 insertions(+), 69 deletions(-) diff --git a/redisson-hibernate/README.md b/redisson-hibernate/README.md index 6b39eccdc..8c7e3b142 100644 --- a/redisson-hibernate/README.md +++ b/redisson-hibernate/README.md @@ -1,19 +1,18 @@ -Redis based Hibernate Cache implementation -=== +# Redis based Hibernate Cache implementation -Implements [Hibernate 2nd level Cache](https://docs.jboss.org/hibernate/orm/5.4/userguide/html_single/Hibernate_User_Guide.html#caching) provider based on Redis. -Supports all Hibernate cache strategies: `READ_ONLY`, `NONSTRICT_READ_WRITE`, `READ_WRITE` and `TRANSACTIONAL`. +Implements [Hibernate 2nd level Cache](https://docs.jboss.org/hibernate/orm/5.4/userguide/html_single/Hibernate_User_Guide.html#caching) provider based on Redis. +Supports all Hibernate cache strategies: `READ_ONLY`, `NONSTRICT_READ_WRITE`, `READ_WRITE` and `TRANSACTIONAL`. It's recommended to use FST or Snappy as [codec](https://github.com/redisson/redisson/wiki/4.-data-serialization). Compatible with Hibernate 4.x, 5.x. (5.3.0, 5.3.1 and 5.3.2 versions aren't supported) Redisson provides various Hibernate Cache factories including those with features below: -**local cache** - so called `near cache`, which is useful for use cases when Hibernate Cache used mostly for read operations and/or network roundtrips are undesirable. It caches Map entries on Redisson side and executes read operations up to **5x faster** in comparison with common implementation. All local caches with the same name connected to the same pub/sub channel which is used for messaging between them. In particular to send entity update or entity invalidate event. +**local cache** - so called `near cache`, which is useful for use cases when Hibernate Cache used mostly for read operations and/or network roundtrips are undesirable. It caches Map entries on Redisson side and executes read operations up to **5x faster** in comparison with common implementation. All local caches with the same name connected to the same pub/sub channel which is used for messaging between them. In particular to send entity update or entity invalidate event. -**data partitioning** - data partitioning in cluster mode. It allows to scale available memory, read/write operations and entry eviction process for individual Hibernate Cache instance in Redis cluster. +**data partitioning** - data partitioning in cluster mode. It allows to scale available memory, read/write operations and entry eviction process for individual Hibernate Cache instance in Redis cluster. -Below is the list of all available factories with local cache and/or data partitioning support: +Below is the list of all available factories with local cache and/or data partitioning support: |Class name | Local cache
support
(up to 5x faster) | Data partitioning
support | | ------------- | ------------- | ------------| @@ -22,12 +21,12 @@ Below is the list of all available factories with local cache and/or data partit |RedissonClusteredRegionFactory
available only in [Redisson PRO](http://redisson.pro) edition | No | **Yes** | |RedissonClusteredLocalCachedRegionFactory
available only in [Redisson PRO](http://redisson.pro) edition | **Yes** | **Yes** | -Hibernate Cache Usage -=== +## Hibernate Cache Usage -### 1. Add `redisson-hibernate` dependency into your project: +### 1. Add `redisson-hibernate` dependency into your project: Maven + ```xml org.redisson @@ -45,7 +44,7 @@ Maven Gradle -```java +```groovy // for Hibernate v4.x compile 'org.redisson:redisson-hibernate-4:3.10.6' // for Hibernate v5.0.x - v5.1.x @@ -54,8 +53,7 @@ Gradle compile 'org.redisson:redisson-hibernate-52:3.10.6' // for Hibernate v5.3.3+ - v5.4.x compile 'org.redisson:redisson-hibernate-53:3.10.6' -``` - +``` ### 2. Specify hibernate cache settings @@ -71,7 +69,9 @@ Define Redisson Region Cache Factory: ``` + By default each Region Factory creates own Redisson instance. For multiple applications, using the same Redis setup and deployed in the same JVM, amount of Redisson instances could be reduced using JNDI registry: + ```xml @@ -96,33 +96,33 @@ By default each Region Factory creates own Redisson instance. For multiple appli ``` -#### Redisson allows to define follow cache settings per entity, collection, naturalid, query and timestamp regions: +#### Redisson allows to define follow cache settings per entity, collection, naturalid, query and timestamp regions: -`hibernate.cache.redisson.[REGION_NAME].eviction.max_entries` - max size of cache. Superfluous entries in Redis are evicted using LRU algorithm. `0` value means unbounded cache. Default value: 0 +`hibernate.cache.redisson.[REGION_NAME].eviction.max_entries` - max size of cache. Superfluous entries in Redis are evicted using LRU algorithm. `0` value means unbounded cache. Default value: 0 -`hibernate.cache.redisson.[REGION_NAME].expiration.time_to_live` - time to live per cache entry in Redis. Defined in milliseconds. `0` value means this setting doesn't affect expiration. Default value: 0 +`hibernate.cache.redisson.[REGION_NAME].expiration.time_to_live` - time to live per cache entry in Redis. Defined in milliseconds. `0` value means this setting doesn't affect expiration. Default value: 0 -`hibernate.cache.redisson.[REGION_NAME].expiration.max_idle_time` - max idle time per cache entry in Redis. Defined in milliseconds. `0` value means this setting doesn't affect expiration. Default value: 0 +`hibernate.cache.redisson.[REGION_NAME].expiration.max_idle_time` - max idle time per cache entry in Redis. Defined in milliseconds. `0` value means this setting doesn't affect expiration. Default value: 0 -`hibernate.cache.redisson.[REGION_NAME].localcache.max_idle_time` - max idle time per entry in local cache. Defined in milliseconds. `0` value means this setting doesn't affect expiration. Default value: 0 +`hibernate.cache.redisson.[REGION_NAME].localcache.max_idle_time` - max idle time per entry in local cache. Defined in milliseconds. `0` value means this setting doesn't affect expiration. Default value: 0 -`hibernate.cache.redisson.[REGION_NAME].localcache.time_to_live` - time to live per entry in local cache. Defined in milliseconds. `0` value means this setting doesn't affect expiration. Default value: 0 +`hibernate.cache.redisson.[REGION_NAME].localcache.time_to_live` - time to live per entry in local cache. Defined in milliseconds. `0` value means this setting doesn't affect expiration. Default value: 0 -`hibernate.cache.redisson.[REGION_NAME].localcache.eviction_policy` - eviction policy applied to local cache entries when cache size limit reached. LFU, LRU, SOFT, WEAK and NONE policies are available. Default value: NONE +`hibernate.cache.redisson.[REGION_NAME].localcache.eviction_policy` - eviction policy applied to local cache entries when cache size limit reached. LFU, LRU, SOFT, WEAK and NONE policies are available. Default value: NONE -`hibernate.cache.redisson.[REGION_NAME].localcache.sync_strategy` - sync strategy used to synchronize local cache changes across all instances. Follow sync strategies are available: -INVALIDATE - Default. Invalidate cache entry across all LocalCachedMap instances on map entry change -UPDATE - Update cache entry across all LocalCachedMap instances on map entry change -NONE - No synchronizations on map changes +`hibernate.cache.redisson.[REGION_NAME].localcache.sync_strategy` - sync strategy used to synchronize local cache changes across all instances. Follow sync strategies are available: +INVALIDATE - Default. Invalidate cache entry across all LocalCachedMap instances on map entry change +UPDATE - Update cache entry across all LocalCachedMap instances on map entry change +NONE - No synchronizations on map changes Default value: INVALIDATE -`hibernate.cache.redisson.[REGION_NAME].localcache.reconnection_strategy` - reconnection strategy used to load missed updates through Hibernate during any connection failures to Redis. Since, local cache updates can't be get in absence of connection to Redis. Follow reconnection strategies are available: -CLEAR - Clear local cache if map instance has been disconnected for a while. -LOAD - Store invalidated entry hash in invalidation log for 10 minutes. Cache keys for stored invalidated entry hashes will be removed if LocalCachedMap instance has been disconnected less than 10 minutes or whole cache will be cleaned otherwise. -NONE - Default. No reconnection handling +`hibernate.cache.redisson.[REGION_NAME].localcache.reconnection_strategy` - reconnection strategy used to load missed updates through Hibernate during any connection failures to Redis. Since, local cache updates can't be get in absence of connection to Redis. Follow reconnection strategies are available: +CLEAR - Clear local cache if map instance has been disconnected for a while. +LOAD - Store invalidated entry hash in invalidation log for 10 minutes. Cache keys for stored invalidated entry hashes will be removed if LocalCachedMap instance has been disconnected less than 10 minutes or whole cache will be cleaned otherwise. +NONE - Default. No reconnection handling -Default value: NONE +Default value: NONE `hibernate.cache.redisson.[REGION_NAME].localcache.size` - max size of local cache. Superfluous entries in Redis are evicted using defined eviction policy. `0` value means unbounded cache. Default value: 0 diff --git a/redisson-spring-boot-starter/README.md b/redisson-spring-boot-starter/README.md index d7108b324..773211d28 100644 --- a/redisson-spring-boot-starter/README.md +++ b/redisson-spring-boot-starter/README.md @@ -1,5 +1,4 @@ -Spring Boot Starter -=== +# Spring Boot Starter Integrates Redisson with Spring Boot library. Depends on [Spring Data Redis](https://github.com/redisson/redisson/tree/master/redisson-spring-data#spring-data-redis-integration) module. @@ -7,10 +6,9 @@ Supports Spring Boot 1.3.x, 1.4.x, 1.5.x, 2.0.x, 2.1.x Consider __[Redisson PRO](https://redisson.pro)__ version for advanced features and support by SLA. -Usage -=== +## Usage -### 1. Add `redisson-spring-boot-starter` dependency into your project: +### 1. Add `redisson-spring-boot-starter` dependency into your project: Maven @@ -23,9 +21,10 @@ Maven ``` Gradle -```java + +```groovy compile 'org.redisson:redisson-spring-boot-starter:3.10.6' -``` +``` ### 2. Add settings into `application.settings` file diff --git a/redisson-spring-data/README.md b/redisson-spring-data/README.md index 25f753c52..baf21b95f 100644 --- a/redisson-spring-data/README.md +++ b/redisson-spring-data/README.md @@ -1,5 +1,4 @@ -Spring Data Redis integration -=== +# Spring Data Redis integration Integrates Redisson with Spring Data Redis library. Implements Spring Data's `RedisConnectionFactory` and `ReactiveRedisConnectionFactory` interfaces and allows to interact with Redis through `RedisTemplate` or `ReactiveRedisTemplate` object. @@ -7,10 +6,9 @@ Supports Spring Data Redis 1.6.x, 1.7.x, 1.8.x, 2.0.x, 2.1.x Consider __[Redisson PRO](https://redisson.pro)__ version for advanced features and support by SLA. -Usage -=== +## Usage -### 1. Add `redisson-spring-data` dependency into your project: +### 1. Add `redisson-spring-data` dependency into your project: Maven @@ -33,7 +31,7 @@ Maven Gradle -```java +```groovy // for Spring Data Redis v.1.6.x compile 'org.redisson:redisson-spring-data-16:3.10.6' // for Spring Data Redis v.1.7.x @@ -44,24 +42,24 @@ Gradle compile 'org.redisson:redisson-spring-data-20:3.10.6' // for Spring Data Redis v.2.1.x compile 'org.redisson:redisson-spring-data-21:3.10.6' -``` +``` ### 2. Register `RedissonConnectionFactory` in Spring context -```java +```java @Configuration public class RedissonSpringDataConfig { - + @Bean public RedissonConnectionFactory redissonConnectionFactory(RedissonClient redisson) { return new RedissonConnectionFactory(redisson); } - + @Bean(destroyMethod = "shutdown") public RedissonClient redisson(@Value("classpath:/redisson.yaml") Resource configFile) throws IOException { Config config = Config.fromYAML(configFile.getInputStream()); return Redisson.create(config); } - + } ``` diff --git a/redisson-tomcat/README.md b/redisson-tomcat/README.md index ee8fefd16..3d460ea23 100644 --- a/redisson-tomcat/README.md +++ b/redisson-tomcat/README.md @@ -1,24 +1,21 @@ -Redis based Tomcat Session Manager -=== +# Redis based Tomcat Session Manager -Stores session of [Apache Tomcat](http://tomcat.apache.org) in Redis and allows to distribute requests across a cluster of Tomcat servers. Implements non-sticky session management backed by Redis. +Stores session of [Apache Tomcat](http://tomcat.apache.org) in Redis and allows to distribute requests across a cluster of Tomcat servers. Implements non-sticky session management backed by Redis. Supports Apache Tomcat 6.x, 7.x, 8.x, 9.x Consider __[Redisson PRO](https://redisson.pro)__ version for advanced features and support by SLA. -Advantages -=== +## Advantages Current implementation differs from any other Redis based Tomcat Session Manager in terms of efficient storage and optimized writes. Each session attribute is written into Redis during each `HttpSession.setAttribute` invocation. While other solutions serialize whole session each time. -Usage -=== +## Usage ### 1. Add `RedissonSessionManager` Add `RedissonSessionManager` into `tomcat/conf/context.xml` - + ```xml @@ -27,9 +24,9 @@ Add `RedissonSessionManager` into `tomcat/conf/context.xml` * `MEMORY` - stores attributes into local Tomcat Session and Redis. Further Session updates propagated to local Tomcat Session using Redis-based events. * `REDIS` - stores attributes into Redis only. Default mode.
- + `broadcastSessionEvents` - if `true` then `sessionCreated` and `sessionDestroyed` events broadcasted across all Tomcat instances and trigger all registered HttpSessionListeners. Default is `false`. - + `updateMode` - Session attributes update mode. Two modes are available: * `DEFAULT` - session attributes are stored into Redis only through setAttribute method. Default mode. * `AFTER_REQUEST` - all session attributes are stored into Redis after each request. @@ -45,7 +42,7 @@ Add `RedissonSessionManager` into `tomcat/conf/context.xml` ```xml - Date: Mon, 29 Apr 2019 15:23:34 +0300 Subject: [PATCH 2/6] Update CHANGELOG.md --- CHANGELOG.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index cf5c57999..9c633e745 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,25 @@ Redisson Releases History Сonsider __[Redisson PRO](https://redisson.pro)__ version for advanced features and support by SLA. +### 29-Apr-2019 - versions 3.10.7 released +Feature - Add support for Reactive and RxJava2 interfaces for RemoteService object +Feature - MILLISECONDS option added to RRateLimiter.RateIntervalUnit object +Feature - range method added to RList, RListReactive and RListRx interfaces +Improvement - `JCache.getAll` execution optimization for non-existing keys +Improvement - 10X Performance boost for `JCache.putAll` method +Fixed - disconnected sentinels shouldn't be used in sentinel list +Fixed - Apache Tomcat `RedissonSessionManager` doesn't use classloader aware codec for session Map object (thanks to [jchobantonov](https://github.com/jchobantonov)) +Fixed - LiveObject field with Map type couldn't be persisted +Fixed - `RRateLimiter` allows permits limit exceeding +Fixed - `CompositeCodec.getMapValueDecoder` method uses `MapKeyDecoder` instead of `MapValueDecoder` +Fixed - memory leak during blocking methods invocation of Queue objects +Fixed - Apache Tomcat `RedissonSessionManager.findSession` shouldn't create a new one session (thanks to [jchobantonov](https://github.com/jchobantonov)) +Fixed - `JCache.removeAll` method doesn't notify Cache listeners +Fixed - `UpdateValve` sould be removed from pipeline in Apache Tomcat `RedissonSessionManager.stopInternal` method (thanks to [jchobantonov](https://github.com/jchobantonov)) +Fixed - Redis Sentinel prior 5.0.1 version doesn't require password. Regression since 3.10.5 version +Fixed - Redisson tries to renewed Lock expiration even if lock doesn't exist. Regression since 3.10.5 version +Fixed - FstCodec can't deserialize ConcurrentHashMap based object with package visibility + ### 05-Apr-2019 - versions 3.10.6 released Feature - `broadcastSessionEvents` setting added to Tomcat Session Manager Feature - `remainTimeToLive` method added to `RLock`, `RLockAsync`, `RLockRx` and `RLockReactive` interfaces From 8a10339f3d4a6d56b53a6be88e6401ccfb67a24b Mon Sep 17 00:00:00 2001 From: Nikita Koksharov Date: Mon, 29 Apr 2019 15:25:09 +0300 Subject: [PATCH 3/6] Update README.md --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 8058dbd60..9a3a7c234 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Redisson - Redis Java client
with features of In-Memory Data Grid -[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.10.5) | [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)** +[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.10.6) | [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)** Based on high-performance async and lock-free Java Redis client and [Netty](http://netty.io) framework. JDK compatibility: 1.8 - 12, Android @@ -103,12 +103,12 @@ Used by org.redisson redisson - 3.10.6 + 3.10.7 #### Gradle - compile 'org.redisson:redisson:3.10.6' + compile 'org.redisson:redisson:3.10.7' #### Java @@ -134,8 +134,8 @@ Consider __[Redisson PRO](https://redisson.pro)__ version for advanced features ## Downloads -[Redisson 3.10.6](https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=org.redisson&a=redisson&v=3.10.6&e=jar), -[Redisson node 3.10.6](https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=org.redisson&a=redisson-all&v=3.10.6&e=jar) +[Redisson 3.10.7](https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=org.redisson&a=redisson&v=3.10.7&e=jar), +[Redisson node 3.10.7](https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=org.redisson&a=redisson-all&v=3.10.7&e=jar) ## FAQs From f7d80085dec2d39614d6ef1dfae1693da3b672a3 Mon Sep 17 00:00:00 2001 From: Nikita Koksharov Date: Mon, 29 Apr 2019 15:25:56 +0300 Subject: [PATCH 4/6] Update README.md --- redisson-tomcat/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/redisson-tomcat/README.md b/redisson-tomcat/README.md index fab18c436..f389bf892 100644 --- a/redisson-tomcat/README.md +++ b/redisson-tomcat/README.md @@ -68,14 +68,14 @@ Add `RedissonSessionManager` into `tomcat/conf/context.xml` ### 2. Copy two jars into `TOMCAT_BASE/lib` directory: -[redisson-all-3.10.6.jar](https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=org.redisson&a=redisson-all&v=3.10.6&e=jar) +[redisson-all-3.10.7.jar](https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=org.redisson&a=redisson-all&v=3.10.7&e=jar) for Tomcat 6.x -[redisson-tomcat-6-3.10.6.jar](https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=org.redisson&a=redisson-tomcat-6&v=3.10.6&e=jar) +[redisson-tomcat-6-3.10.7.jar](https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=org.redisson&a=redisson-tomcat-6&v=3.10.7&e=jar) for Tomcat 7.x -[redisson-tomcat-7-3.10.6.jar](https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=org.redisson&a=redisson-tomcat-7&v=3.10.6&e=jar) +[redisson-tomcat-7-3.10.7.jar](https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=org.redisson&a=redisson-tomcat-7&v=3.10.7&e=jar) for Tomcat 8.x -[redisson-tomcat-8-3.10.6.jar](https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=org.redisson&a=redisson-tomcat-8&v=3.10.6&e=jar) +[redisson-tomcat-8-3.10.7.jar](https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=org.redisson&a=redisson-tomcat-8&v=3.10.7&e=jar) for Tomcat 9.x -[redisson-tomcat-9-3.10.6.jar](https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=org.redisson&a=redisson-tomcat-9&v=3.10.6&e=jar) +[redisson-tomcat-9-3.10.7.jar](https://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=org.redisson&a=redisson-tomcat-9&v=3.10.7&e=jar) From a0b95c0667354334dbbc870226d227a95fbddcef Mon Sep 17 00:00:00 2001 From: Nikita Koksharov Date: Mon, 29 Apr 2019 16:42:20 +0300 Subject: [PATCH 5/6] Update CHANGELOG.md --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c633e745..bc3a10b0f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ Redisson Releases History Сonsider __[Redisson PRO](https://redisson.pro)__ version for advanced features and support by SLA. ### 29-Apr-2019 - versions 3.10.7 released -Feature - Add support for Reactive and RxJava2 interfaces for RemoteService object +Feature - Add support for Reactive and RxJava2 interfaces to RemoteService object Feature - MILLISECONDS option added to RRateLimiter.RateIntervalUnit object Feature - range method added to RList, RListReactive and RListRx interfaces Improvement - `JCache.getAll` execution optimization for non-existing keys From 1224cbf1bf918a207fb0d9c26375721ef928003b Mon Sep 17 00:00:00 2001 From: Nikita Koksharov Date: Mon, 29 Apr 2019 16:43:01 +0300 Subject: [PATCH 6/6] Update CHANGELOG.md --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bc3a10b0f..b231b6f54 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ Redisson Releases History Сonsider __[Redisson PRO](https://redisson.pro)__ version for advanced features and support by SLA. ### 29-Apr-2019 - versions 3.10.7 released -Feature - Add support for Reactive and RxJava2 interfaces to RemoteService object +Feature - Add support for [Reactive and RxJava2 interfaces](https://github.com/redisson/redisson/wiki/9.-distributed-services#913-remote-service-asynchronous-reactive-and-rxjava2-calls) to RemoteService object Feature - MILLISECONDS option added to RRateLimiter.RateIntervalUnit object Feature - range method added to RList, RListReactive and RListRx interfaces Improvement - `JCache.getAll` execution optimization for non-existing keys