mirror of
https://github.com/moodle/moodle.git
synced 2025-08-05 00:46:50 +02:00
Merge branch 'wip-MDL-36362-m24' of git://github.com/samhemelryk/moodle
Conflicts: version.php
This commit is contained in:
commit
2c36da50bc
5 changed files with 32 additions and 3 deletions
|
@ -31,6 +31,7 @@ $definitions = array(
|
|||
// Used to store processed lang files.
|
||||
'string' => array(
|
||||
'mode' => cache_store::MODE_APPLICATION,
|
||||
'simpledata' => true,
|
||||
'persistent' => true,
|
||||
'persistentmaxsize' => 3
|
||||
),
|
||||
|
@ -48,14 +49,16 @@ $definitions = array(
|
|||
// Used to store data from the config + config_plugins table in the database.
|
||||
'config' => array(
|
||||
'mode' => cache_store::MODE_APPLICATION,
|
||||
'persistent' => true
|
||||
'persistent' => true,
|
||||
'simpledata' => true
|
||||
),
|
||||
|
||||
// Event invalidation cache.
|
||||
'eventinvalidation' => array(
|
||||
'mode' => cache_store::MODE_APPLICATION,
|
||||
'persistent' => true,
|
||||
'requiredataguarantee' => true
|
||||
'requiredataguarantee' => true,
|
||||
'simpledata' => true,
|
||||
),
|
||||
|
||||
// Cache for question definitions. This is used by the question_bank class.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue