|
|
|
@ -5,7 +5,7 @@ Implements [Hibernate 2nd level Cache](https://docs.jboss.org/hibernate/orm/5.4/
|
|
|
|
|
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
|
|
|
|
|
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:
|
|
|
|
|
|
|
|
|
@ -37,7 +37,7 @@ Maven
|
|
|
|
|
<artifactId>redisson-hibernate-5</artifactId>
|
|
|
|
|
<!-- for Hibernate v5.2.x -->
|
|
|
|
|
<artifactId>redisson-hibernate-52</artifactId>
|
|
|
|
|
<!-- for Hibernate v5.3.x - v5.4.x -->
|
|
|
|
|
<!-- for Hibernate v5.3.3+ - v5.4.x -->
|
|
|
|
|
<artifactId>redisson-hibernate-53</artifactId>
|
|
|
|
|
<version>3.10.4</version>
|
|
|
|
|
</dependency>
|
|
|
|
@ -52,7 +52,7 @@ Gradle
|
|
|
|
|
compile 'org.redisson:redisson-hibernate-5:3.10.4'
|
|
|
|
|
// for Hibernate v5.2.x
|
|
|
|
|
compile 'org.redisson:redisson-hibernate-52:3.10.4'
|
|
|
|
|
// for Hibernate v5.3.x - v5.4.x
|
|
|
|
|
// for Hibernate v5.3.3+ - v5.4.x
|
|
|
|
|
compile 'org.redisson:redisson-hibernate-53:3.10.4'
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|