Merge branch 'master' of github.com:redisson/redisson

pull/2655/head
Nikita Koksharov 5 years ago
commit ed6d598a7e

@ -88,6 +88,7 @@ Used by
## Success stories
## [Moving from Hazelcast to Redis / Datorama](https://engineering.datorama.com/moving-from-hazelcast-to-redis-b90a0769d1cb)
## [Migrating from Hazelcast to Redis / Halodoc](https://blogs.halodoc.io/why-and-how-we-move-from-hazelcast-to-redis-2/)
## [Distributed Locking with Redis (Migration from Hazelcast) / ContaAzul](https://carlosbecker.com/posts/distributed-locks-redis/)
## [Migrating from Coherence to Redis](https://www.youtube.com/watch?v=JF5R2ucKTEg)

@ -66,7 +66,7 @@ Redisson allows to define follow settings per Cache instance:
Examples:
```xml
<cache type="org.redisson.hibernate.RedissonCache">
<cache type="org.redisson.mybatis.RedissonCache">
<property name="timeToLive" value="200000"/>
<property name="maxIdleTime" value="100000"/>
<property name="maxSize" value="100000"/>
@ -74,7 +74,7 @@ Examples:
</cache>
<!-- or -->
<cache type="org.redisson.hibernate.RedissonLocalCachedCache">
<cache type="org.redisson.mybatis.RedissonLocalCachedCache">
<property name="timeToLive" value="200000"/>
<property name="maxIdleTime" value="100000"/>
<property name="maxSize" value="100000"/>
@ -89,7 +89,7 @@ Examples:
</cache>
<!-- or -->
<cache type="org.redisson.hibernate.RedissonClusteredCache">
<cache type="org.redisson.mybatis.RedissonClusteredCache">
<property name="timeToLive" value="200000"/>
<property name="maxIdleTime" value="100000"/>
<property name="maxSize" value="100000"/>
@ -97,7 +97,7 @@ Examples:
</cache>
<!-- or -->
<cache type="org.redisson.hibernate.RedissonClusteredLocalCachedCache">
<cache type="org.redisson.mybatis.RedissonClusteredLocalCachedCache">
<property name="timeToLive" value="200000"/>
<property name="maxIdleTime" value="100000"/>
<property name="maxSize" value="100000"/>

Loading…
Cancel
Save