Make in-memory request cache configurable (#3477)

Related: octobercms/library#308, merged in 7e29489d87. Credit to @Josniii
This commit is contained in:
Jonas Søndergaard 2018-03-28 20:34:43 +02:00 committed by Luke Towers
parent b5009fde11
commit c85f8297d2
1 changed files with 13 additions and 0 deletions

View File

@ -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,
];