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 160
160
'password ' => env ('REDIS_PASSWORD ' ),
161
161
'port ' => env ('REDIS_PORT ' , '6379 ' ),
162
162
'database ' => env ('REDIS_DB ' , '0 ' ),
163
+ 'max_retries ' => env ('REDIS_MAX_RETRIES ' , 3 ),
164
+ 'backoff_algorithm ' => env ('REDIS_BACKOFF_ALGORITHM ' , 'decorrelated_jitter ' ),
165
+ 'backoff_base ' => env ('REDIS_BACKOFF_BASE ' , 100 ),
166
+ 'backoff_cap ' => env ('REDIS_BACKOFF_CAP ' , 1000 ),
163
167
],
164
168
165
169
'cache ' => [
169
173
'password ' => env ('REDIS_PASSWORD ' ),
170
174
'port ' => env ('REDIS_PORT ' , '6379 ' ),
171
175
'database ' => env ('REDIS_CACHE_DB ' , '1 ' ),
176
+ 'max_retries ' => env ('REDIS_MAX_RETRIES ' , 3 ),
177
+ 'backoff_algorithm ' => env ('REDIS_BACKOFF_ALGORITHM ' , 'decorrelated_jitter ' ),
178
+ 'backoff_base ' => env ('REDIS_BACKOFF_BASE ' , 100 ),
179
+ 'backoff_cap ' => env ('REDIS_BACKOFF_CAP ' , 1000 ),
172
180
],
173
181
174
182
],
You can’t perform that action at this time.
0 commit comments