MDL-36859 cache: removed unused config definition

This commit is contained in:
Sam Hemelryk 2012-11-28 10:34:33 +13:00
parent e002d5e435
commit 73321216a1
3 changed files with 2 additions and 15 deletions

View file

@ -51,18 +51,6 @@ $definitions = array(
'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.
// 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.