From d6d97fe59b91a3f5432f797c76b62b3b07ed34a6 Mon Sep 17 00:00:00 2001 From: Nikita Koksharov Date: Fri, 25 Jan 2019 21:28:42 +0300 Subject: [PATCH] Update README.md --- redisson-hibernate/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/redisson-hibernate/README.md b/redisson-hibernate/README.md index a26851f4d..87967a35b 100644 --- a/redisson-hibernate/README.md +++ b/redisson-hibernate/README.md @@ -1,7 +1,7 @@ Redis based Hibernate Cache implementation === -Implements Hibernate 2nd level Cache provider based on Redisson. +Implements Hibernate 2nd level Cache 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). @@ -140,7 +140,7 @@ NONE - No synchronizations on map changes Default value: INVALIDATE -`hibernate.cache.redisson.[REGION_NAME].localcache.reconnection_strategy` - reconnection strategy used to load missed updates 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: +`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