mirror of
https://github.com/moodle/moodle.git
synced 2025-08-05 00:46:50 +02:00
MDL-36859 cache: removed unused config definition
This commit is contained in:
parent
e002d5e435
commit
73321216a1
3 changed files with 2 additions and 15 deletions
|
@ -34,7 +34,6 @@ $string['area'] = 'Area';
|
||||||
$string['caching'] = 'Caching';
|
$string['caching'] = 'Caching';
|
||||||
$string['cacheadmin'] = 'Cache administration';
|
$string['cacheadmin'] = 'Cache administration';
|
||||||
$string['cacheconfig'] = 'Configuration';
|
$string['cacheconfig'] = 'Configuration';
|
||||||
$string['cachedef_config'] = 'Config settings';
|
|
||||||
$string['cachedef_databasemeta'] = 'Database meta information';
|
$string['cachedef_databasemeta'] = 'Database meta information';
|
||||||
$string['cachedef_eventinvalidation'] = 'Event invalidation';
|
$string['cachedef_eventinvalidation'] = 'Event invalidation';
|
||||||
$string['cachedef_locking'] = 'Locking';
|
$string['cachedef_locking'] = 'Locking';
|
||||||
|
|
|
@ -51,18 +51,6 @@ $definitions = array(
|
||||||
'persistentmaxsize' => 2
|
'persistentmaxsize' => 2
|
||||||
),
|
),
|
||||||
|
|
||||||
// Used to store data from the config + config_plugins table in the database.
|
|
||||||
// The key used is the component:
|
|
||||||
// - core for all core config settings
|
|
||||||
// - plugin component for all plugin settings.
|
|
||||||
// Persistence is used because normally several settings within a script.
|
|
||||||
'config' => array(
|
|
||||||
'mode' => cache_store::MODE_APPLICATION,
|
|
||||||
'persistent' => true,
|
|
||||||
'simplekeys' => true,
|
|
||||||
'simpledata' => true
|
|
||||||
),
|
|
||||||
|
|
||||||
// Event invalidation cache.
|
// Event invalidation cache.
|
||||||
// This cache is used to manage event invalidation, its keys are the event names.
|
// This cache is used to manage event invalidation, its keys are the event names.
|
||||||
// Whenever something is invalidated it is both purged immediately and an event record created with the timestamp.
|
// Whenever something is invalidated it is both purged immediately and an event record created with the timestamp.
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
defined('MOODLE_INTERNAL') || die();
|
defined('MOODLE_INTERNAL') || die();
|
||||||
|
|
||||||
|
|
||||||
$version = 2012112700.00; // YYYYMMDD = weekly release date of this DEV branch
|
$version = 2012112700.01; // YYYYMMDD = weekly release date of this DEV branch
|
||||||
// RR = release increments - 00 in DEV branches
|
// RR = release increments - 00 in DEV branches
|
||||||
// .XX = incremental changes
|
// .XX = incremental changes
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue