From b7bfcf87c376bf16f1cb93fed78696ef4e46e9e5 Mon Sep 17 00:00:00 2001 From: Nikita Koksharov Date: Fri, 6 Mar 2020 17:25:43 +0300 Subject: [PATCH] Update README.md --- redisson-mybatis/README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/redisson-mybatis/README.md b/redisson-mybatis/README.md index 5b7069bb8..469fb6968 100644 --- a/redisson-mybatis/README.md +++ b/redisson-mybatis/README.md @@ -29,14 +29,14 @@ Maven org.redisson redisson-mybatis - 3.12.2 + 3.12.3 ``` Gradle ```groovy - compile 'org.redisson:redisson-mybatis:3.12.2' + compile 'org.redisson:redisson-mybatis:3.12.3' ``` ### 2. Specify MyBatis cache settings @@ -49,6 +49,8 @@ Redisson allows to define follow settings per Cache instance: `maxSize` - defines max size of entries amount stored in Redis +`localCacheProvider` - cache provider used as local cache store. `REDISSON` and `CAFFEINE` providers are available. Default value: `REDISSON` + `localCacheEvictionPolicy` - local cache eviction policy. `LFU`, `LRU`, `SOFT`, `WEAK` and `NONE` eviction policies are available. `localCacheSize` - local cache size. If size is `0` then local cache is unbounded.