File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change 158
158
'password ' => env ('REDIS_PASSWORD ' ),
159
159
'port ' => env ('REDIS_PORT ' , '6379 ' ),
160
160
'database ' => env ('REDIS_DB ' , '0 ' ),
161
+ 'max_retries ' => env ('REDIS_MAX_RETRIES ' , 3 ),
162
+ 'backoff_algorithm ' => env ('REDIS_BACKOFF_ALGORITHM ' , 'decorrelated_jitter ' ),
163
+ 'backoff_base ' => env ('REDIS_BACKOFF_BASE ' , 100 ),
164
+ 'backoff_cap ' => env ('REDIS_BACKOFF_CAP ' , 1000 ),
161
165
],
162
166
163
167
'cache ' => [
167
171
'password ' => env ('REDIS_PASSWORD ' ),
168
172
'port ' => env ('REDIS_PORT ' , '6379 ' ),
169
173
'database ' => env ('REDIS_CACHE_DB ' , '1 ' ),
174
+ 'max_retries ' => env ('REDIS_MAX_RETRIES ' , 3 ),
175
+ 'backoff_algorithm ' => env ('REDIS_BACKOFF_ALGORITHM ' , 'decorrelated_jitter ' ),
176
+ 'backoff_base ' => env ('REDIS_BACKOFF_BASE ' , 100 ),
177
+ 'backoff_cap ' => env ('REDIS_BACKOFF_CAP ' , 1000 ),
170
178
],
171
179
172
180
],
You can’t perform that action at this time.
0 commit comments