You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
1.8 KiB
Markdown
60 lines
1.8 KiB
Markdown
# Quarkus extension for Redis
|
|
|
|
Integrates Redisson with [Quarkus](https://quarkus.io/) framework.
|
|
|
|
Supports Quarkus 1.6.x - 2.0.x
|
|
|
|
## Usage
|
|
|
|
### 1. Add `redisson-quarkus` dependency into your project:
|
|
|
|
Maven
|
|
|
|
```xml
|
|
<dependency>
|
|
<groupId>org.redisson</groupId>
|
|
<!-- for Quarkus v1.6.x - v1.13.x -->
|
|
<artifactId>redisson-quarkus-16</artifactId>
|
|
<!-- for Quarkus v2.0.x -->
|
|
<artifactId>redisson-quarkus-20</artifactId>
|
|
<version>3.16.0</version>
|
|
</dependency>
|
|
```
|
|
|
|
Gradle
|
|
|
|
```groovy
|
|
// for Quarkus v1.6.x - v1.13.x
|
|
compile 'org.redisson:redisson-quarkus-16:3.16.0'
|
|
// for Quarkus v2.0.x
|
|
compile 'org.redisson:redisson-quarkus-20:3.16.0'
|
|
```
|
|
|
|
### 2. Add settings into `application.properties` file
|
|
|
|
Config structure is a flat Redisson YAML configuration -
|
|
[single mode](https://github.com/redisson/redisson/wiki/2.-Configuration#262-single-instance-yaml-config-format),
|
|
[replicated mode](https://github.com/redisson/redisson/wiki/2.-Configuration#252-replicated-yaml-config-format),
|
|
[cluster mode](https://github.com/redisson/redisson/wiki/2.-Configuration#242-cluster-yaml-config-format),
|
|
[sentinel mode](https://github.com/redisson/redisson/wiki/2.-Configuration#272-sentinel-yaml-config-format),
|
|
[proxy mode](https://github.com/redisson/redisson/wiki/2.-Configuration#292-proxy-mode-yaml-config-format)
|
|
|
|
NOTE: Setting names in camel case should be joined with hyphens (-).
|
|
|
|
Below is the configuration for Redisson in single mode.
|
|
```
|
|
quarkus.redisson.single-server-config.address=redis://localhost:6379
|
|
quarkus.redisson.single-server-config.password=null
|
|
quarkus.redisson.threads=16
|
|
quarkus.redisson.netty-threads=32
|
|
```
|
|
|
|
### 3. Use Redisson
|
|
|
|
```java
|
|
@Inject
|
|
RedissonClient redisson;
|
|
```
|
|
|
|
Consider __[Redisson PRO](https://redisson.pro)__ version for **ultra-fast performance** and **support by SLA**.
|