17 lines
313 B
Plaintext
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
|
|
```
|
|
|