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

pull/3826/head
Nikita Koksharov 4 years ago
commit b1cda4feab

@ -8,5 +8,5 @@ assignees: ''
---
<!--
Сonsider Redisson PRO https://redisson.pro version for advanced features and support by SLA.
Try Redisson PRO https://redisson.pro with with ultra-fast performance and support by SLA.
-->

@ -8,7 +8,7 @@ assignees: ''
---
<!--
Сonsider Redisson PRO https://redisson.pro version for advanced features and support by SLA.
Try Redisson PRO https://redisson.pro with ultra-fast performance and support by SLA.
-->
**Expected behavior**

@ -8,7 +8,7 @@ assignees: ''
---
<!--
Сonsider Redisson PRO https://redisson.pro version for advanced features and support by SLA.
Try Redisson PRO https://redisson.pro with ultra-fast performance and support by SLA.
-->
**Is your feature request related to a problem? Please describe.**

@ -2,7 +2,7 @@
Integrates Redisson with [Micronaut](https://micronaut.io/) framework.
Supports Micronaut 2.0.x - 2.5.x
Supports Micronaut 2.0.x - 3.0.x
## Usage
@ -13,15 +13,21 @@ Maven
```xml
<dependency>
<groupId>org.redisson</groupId>
<artifactId>redisson-micronaut</artifactId>
<version>3.16.1</version>
<!-- for Quarkus v2.0.x - v2.5.x -->
<artifactId>redisson-micronaut-20</artifactId>
<!-- for Quarkus v3.0.x -->
<artifactId>redisson-micronaut-30</artifactId>
<version>3.16.2</version>
</dependency>
```
Gradle
```groovy
compile 'org.redisson:redisson-micronaut:3.16.1'
// for Micronaut v2.0.x - v2.5.x
compile 'org.redisson:redisson-micronaut-20:3.16.2'
// for Micronaut v3.0.x
compile 'org.redisson:redisson-micronaut-30:3.16.2'
```
### 2. Add settings into `application.yml` file

@ -2,7 +2,7 @@
Integrates Redisson with [Quarkus](https://quarkus.io/) framework.
Supports Quarkus 1.6.x - 2.0.x
Supports Quarkus 1.6.x - 2.2.x
<details>
<summary><b>Native image with RemoteService</b>. Click to expand!</summary>
@ -42,9 +42,9 @@ Maven
<groupId>org.redisson</groupId>
<!-- for Quarkus v1.6.x - v1.13.x -->
<artifactId>redisson-quarkus-16</artifactId>
<!-- for Quarkus v2.0.x -->
<!-- for Quarkus v2.2.x -->
<artifactId>redisson-quarkus-20</artifactId>
<version>3.16.1</version>
<version>3.16.2</version>
</dependency>
```
@ -52,9 +52,9 @@ Gradle
```groovy
// for Quarkus v1.6.x - v1.13.x
compile 'org.redisson:redisson-quarkus-16:3.16.1'
// for Quarkus v2.0.x
compile 'org.redisson:redisson-quarkus-20:3.16.1'
compile 'org.redisson:redisson-quarkus-16:3.16.2'
// for Quarkus v2.2.x
compile 'org.redisson:redisson-quarkus-20:3.16.2'
```
### 2. Add settings into `application.properties` file

Loading…
Cancel
Save