Files
Sébastien Deleuze 60acfffacf Polishing
2024-06-10 11:50:22 +02:00

17 lines
313 B
Plaintext

Tests and documentation for Spring Data Redis.
== Prevent early database interaction
Spring Data Redis requires extra configuration to avoid pre-warming the pool of connections.
With Lettuce:
```
spring.data.redis.lettuce.pool.enabled=false
```
With Jedis:
```
spring.data.redis.jedis.pool.enabled=false
```