Files
spring-lifecycle-smoke-tests/data/data-redis
Stéphane Nicoll cc561a1106 Remove version attribute from docker-compose files
The version attribute has been deprecated.
2024-08-08 15:38:57 +02:00
..
2024-06-10 11:50:22 +02:00

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
```