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.
98d0a659d0 | 3 years ago | |
---|---|---|
.. | ||
src | 4 years ago | |
README.md | 3 years ago | |
pom.xml | 3 years ago |
README.md
Helidon CDI extension for Redis
Integrates Redisson with Helidon framework.
Supports Helidon 1.4.x - 2.3.x
Usage
1. Add redisson-helidon
dependency into your project:
Maven
<dependency>
<groupId>org.redisson</groupId>
<artifactId>redisson-helidon</artifactId>
<version>3.16.4</version>
</dependency>
Gradle
compile 'org.redisson:redisson-helidon:3.16.4'
2. Add settings into META-INF/microprofile-config.properties
file
Config structure is a flat Redisson YAML configuration - single mode, replicated mode, cluster mode, sentinel mode, proxy mode
Below is the configuration for Redisson instance named simple
.
org.redisson.Redisson.simple.singleServerConfig.address=redis://127.0.0.1:6379
org.redisson.Redisson.simple.singleServerConfig.connectionPoolSize=64
org.redisson.Redisson.simple.threads=16
org.redisson.Redisson.simple.nettyThreads=32
3. Use Redisson
@Inject
@Named("simple")
private RedissonClient redisson;
For injection without @Named annotation use instance name - default
.
Try Redisson PRO with ultra-fast performance and support by SLA.