Make in-memory request cache configurable (#3477)
Related: octobercms/library#308, merged in 7e29489d87. Credit to @Josniii
This commit is contained in:
parent
b5009fde11
commit
c85f8297d2
|
|
@ -78,4 +78,17 @@ return [
|
|||
|
||||
'prefix' => 'october',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Disable Request Cache
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The request cache stores cache retrievals from the cache store
|
||||
| in memory to speed up consecutive retrievals within the same request.
|
||||
| Set to true to disable this in-memory request cache.
|
||||
|
|
||||
*/
|
||||
|
||||
'disableRequestCache' => false,
|
||||
|
||||
];
|
||||
|
|
|
|||
Loading…
Reference in New Issue