Update README.md

pull/4364/head
Nikita Koksharov 3 years ago committed by GitHub
parent 1e38128276
commit ea6bd60def
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -3,7 +3,7 @@
Implements [Hibernate 2nd level Cache](https://docs.jboss.org/hibernate/orm/5.5/userguide/html_single/Hibernate_User_Guide.html#caching) provider based on Redis.
Supports all Hibernate cache strategies: `READ_ONLY`, `NONSTRICT_READ_WRITE`, `READ_WRITE` and `TRANSACTIONAL`.
Compatible with Hibernate 4.x, 5.1.x, 5.2.x and 5.3.3+ up to 5.6.x
Compatible with Hibernate 4.x, 5.1.x, 5.2.x, 5.3.3+ up to 5.6.x and 6.0.2+
Redisson provides various Hibernate Cache factories including those with features below:
@ -38,7 +38,9 @@ Maven
<artifactId>redisson-hibernate-52</artifactId>
<!-- for Hibernate v5.3.3+ - v5.6.x -->
<artifactId>redisson-hibernate-53</artifactId>
<version>3.17.2</version>
<!-- for Hibernate v6.0.2+ -->
<artifactId>redisson-hibernate-6</artifactId>
<version>3.17.3</version>
</dependency>
```
@ -46,13 +48,15 @@ Gradle
```groovy
// for Hibernate v4.x
compile 'org.redisson:redisson-hibernate-4:3.17.2'
compile 'org.redisson:redisson-hibernate-4:3.17.3'
// for Hibernate v5.0.x - v5.1.x
compile 'org.redisson:redisson-hibernate-5:3.17.2'
compile 'org.redisson:redisson-hibernate-5:3.17.3'
// for Hibernate v5.2.x
compile 'org.redisson:redisson-hibernate-52:3.17.2'
compile 'org.redisson:redisson-hibernate-52:3.17.3'
// for Hibernate v5.3.3+ - v5.6.x
compile 'org.redisson:redisson-hibernate-53:3.17.2'
compile 'org.redisson:redisson-hibernate-53:3.17.3'
// for Hibernate v6.0.2+
compile 'org.redisson:redisson-hibernate-6:3.17.3'
```
### 2. Specify hibernate cache settings

Loading…
Cancel
Save