test #244

Merged
klaus merged 4 commits from test into main 2024-12-02 12:05:31 +00:00
1 changed files with 3 additions and 1 deletions
Showing only changes of commit b33945d21c - Show all commits

View File

@ -33,7 +33,9 @@ class RedisConfig(
fun redissonClient(): RedissonClient {
val config = Config()
config.useSingleServer()
.setAddress("redis://$host:$port")
.setAddress("rediss://$host:$port")
.setSslEnableEndpointIdentification(true)
.setSslTruststore(null)
.setConnectionMinimumIdleSize(1)
.setConnectionPoolSize(5)
return Redisson.create(config)