We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1471786 + 2cef843 commit 8c08bd2Copy full SHA for 8c08bd2
1 file changed
src/main/resources/application.yml
@@ -38,6 +38,14 @@ spring:
38
host: ${REDIS_HOST}
39
port: 6379
40
password: ${REDIS_PASSWORD}
41
+ lettuce:
42
+ pool:
43
+ # 핵심: true로 되어 있다면 false로 변경 (매 요청마다 PING 방지)
44
+ test-on-borrow: false
45
+ # 대신 연결이 유효한지 백그라운드에서 가끔 확인
46
+ test-while-idle: true
47
+ # 유효성 검사 주기 (예: 30초)
48
+ time-between-eviction-runs: 30s
49
50
mail:
51
host: smtp.gmail.com
0 commit comments