From b936691b68dbfec607d15b4d59c012fe1b9eb763 Mon Sep 17 00:00:00 2001 From: Nikita Koksharov Date: Tue, 10 Dec 2019 12:38:46 +0300 Subject: [PATCH] Update README.md --- redisson-mybatis/README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/redisson-mybatis/README.md b/redisson-mybatis/README.md index c4ab39246..a302383f6 100644 --- a/redisson-mybatis/README.md +++ b/redisson-mybatis/README.md @@ -49,6 +49,16 @@ Redisson allows to define follow settings per Cache instance: `maxSize` - defines max size of entries amount stored in Redis +`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. + +`localCacheTimeToLive` - time to live in milliseconds for each map entry in local cache. If value equals to `0` then timeout is not applied. + +`localCacheMaxIdleTime` - max idle time in milliseconds for each map entry in local cache. If value equals to `0` then timeout is not applied. + +`localCacheSyncStrategy` - local cache sync strategy. `INVALIDATE`, `UPDATE` and `NONE` eviction policies are available. + `redissonConfig` - defines path to redisson config in YAML format Examples: