2 // This file is part of Moodle - http://moodle.org/
4 // Moodle is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
9 // Moodle is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License
15 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
18 * Core cache definitions.
20 * This file is part of Moodle's cache API, affectionately called MUC.
21 * It contains the components that are requried in order to use caching.
25 * @copyright 2012 Sam Hemelryk
26 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
31 // Used to store processed lang files.
32 // The keys used are the revision, lang and component of the string file.
33 // The static acceleration size has been based upon student access of the site.
35 'mode' => cache_store::MODE_APPLICATION,
38 'staticacceleration' => true,
39 'staticaccelerationsize' => 30,
40 'canuselocalstore' => true,
43 // Used to store cache of all available translations.
45 'mode' => cache_store::MODE_APPLICATION,
48 'staticacceleration' => true,
49 'canuselocalstore' => true,
52 // Used to store database meta information.
53 // The database meta information includes information about tables and there columns.
54 // Its keys are the table names.
55 // When creating an instance of this definition you must provide the database family that is being used.
56 'databasemeta' => array(
57 'mode' => cache_store::MODE_APPLICATION,
58 'requireidentifiers' => array(
61 'simpledata' => true, // This is a read only class, so leaving references in place is safe.
62 'staticacceleration' => true,
63 'staticaccelerationsize' => 15
66 // Event invalidation cache.
67 // This cache is used to manage event invalidation, its keys are the event names.
68 // Whenever something is invalidated it is both purged immediately and an event record created with the timestamp.
69 // When a new cache is initialised all timestamps are looked at and if past data is once more invalidated.
70 // Data guarantee is required in order to ensure invalidation always occurs.
71 // Persistence has been turned on as normally events are used for frequently used caches and this event invalidation
72 // cache will likely be used either lots or never.
73 'eventinvalidation' => array(
74 'mode' => cache_store::MODE_APPLICATION,
75 'staticacceleration' => true,
76 'requiredataguarantee' => true,
80 // Cache for question definitions. This is used by the question_bank class.
81 // Users probably do not need to know about this cache. They will just call
82 // question_bank::load_question.
83 'questiondata' => array(
84 'mode' => cache_store::MODE_APPLICATION,
85 'simplekeys' => true, // The id of the question is used.
86 'requiredataguarantee' => false,
87 'datasource' => 'question_finder',
88 'datasourcefile' => 'question/engine/bank.php',
91 // HTML Purifier cache
92 // This caches the html purifier cleaned text. This is done because the text is usually cleaned once for every user
93 // and context combo. Text caching handles caching for the combination, this cache is responsible for caching the
94 // cleaned text which is shareable.
95 'htmlpurifier' => array(
96 'mode' => cache_store::MODE_APPLICATION,
97 'canuselocalstore' => true,
100 // Used to store data from the config + config_plugins table in the database.
101 // The key used is the component:
102 // - core for all core config settings
103 // - plugin component for all plugin settings.
104 // Persistence is used because normally several settings within a script.
106 'mode' => cache_store::MODE_APPLICATION,
107 'staticacceleration' => true,
111 // Groupings belonging to a course.
112 // A simple cache designed to replace $GROUPLIB_CACHE->groupings.
113 // Items are organised by course id and are essentially course records.
114 'groupdata' => array(
115 'mode' => cache_store::MODE_APPLICATION,
116 'simplekeys' => true, // The course id the groupings exist for.
117 'simpledata' => true, // Array of stdClass objects containing only strings.
118 'staticacceleration' => true, // Likely there will be a couple of calls to this.
119 'staticaccelerationsize' => 2, // The original cache used 1, we've increased that to two.
122 // Used to cache calendar subscriptions.
123 'calendar_subscriptions' => array(
124 'mode' => cache_store::MODE_APPLICATION,
125 'simplekeys' => true,
126 'simpledata' => true,
127 'staticacceleration' => true,
130 // Cache the capabilities list DB table. See get_all_capabilities in accesslib.
131 'capabilities' => array(
132 'mode' => cache_store::MODE_APPLICATION,
133 'simplekeys' => true,
134 'simpledata' => true,
135 'staticacceleration' => true,
136 'staticaccelerationsize' => 1,
137 'ttl' => 3600, // Just in case.
141 // This stores the YUI module metadata for Shifted YUI modules in Moodle.
142 'yuimodules' => array(
143 'mode' => cache_store::MODE_APPLICATION,
146 // Cache for the list of event observers.
147 'observers' => array(
148 'mode' => cache_store::MODE_APPLICATION,
149 'simplekeys' => true,
150 'simpledata' => true,
151 'staticacceleration' => true,
152 'staticaccelerationsize' => 2,
155 // Cache used by the {@link core_plugin_manager} class.
156 // NOTE: this must be a shared cache.
157 'plugin_manager' => array(
158 'mode' => cache_store::MODE_APPLICATION,
159 'simplekeys' => true,
160 'simpledata' => true,
163 // Used to store the full tree of course categories.
164 'coursecattree' => array(
165 'mode' => cache_store::MODE_APPLICATION,
166 'staticacceleration' => true,
167 'invalidationevents' => array(
168 'changesincoursecat',
171 // Used to store data for course categories visible to current user. Helps to browse list of categories.
172 'coursecat' => array(
173 'mode' => cache_store::MODE_SESSION,
174 'invalidationevents' => array(
175 'changesincoursecat',
180 // Used to store data for course categories visible to current user. Helps to browse list of categories.
181 'coursecatrecords' => array(
182 'mode' => cache_store::MODE_REQUEST,
183 'simplekeys' => true,
184 'invalidationevents' => array(
185 'changesincoursecat',
188 // Cache course contacts for the courses.
189 'coursecontacts' => array(
190 'mode' => cache_store::MODE_APPLICATION,
191 'staticacceleration' => true,
192 'simplekeys' => true,
195 // Used to store data for repositories to avoid repetitive DB queries within one request.
196 'repositories' => array(
197 'mode' => cache_store::MODE_REQUEST,
199 // Used to store external badges.
200 'externalbadges' => array(
201 'mode' => cache_store::MODE_APPLICATION,
202 'simplekeys' => true,
205 // Accumulated information about course modules and sections used to print course view page (user-independed).
206 // Used in function get_fast_modinfo(), reset in function rebuild_course_cache().
207 'coursemodinfo' => array(
208 'mode' => cache_store::MODE_APPLICATION,
209 'simplekeys' => true,
210 'canuselocalstore' => true,
212 // This is the session user selections cache.
213 // It's a special cache that is used to record user selections that should persist for the lifetime of the session.
214 // Things such as which categories the user has expanded can be stored here.
215 // It uses simple keys and simple data, please ensure all uses conform to those two constraints.
216 'userselections' => array(
217 'mode' => cache_store::MODE_SESSION,
218 'simplekeys' => true,
222 // Used to cache activity completion status.
223 'completion' => array(
224 'mode' => cache_store::MODE_APPLICATION,
225 'simplekeys' => true,
226 'simpledata' => true,
228 'staticacceleration' => true,
229 'staticaccelerationsize' => 2, // Should be current course and site course.
232 // A simple cache that stores whether a user can expand a course in the navigation.
233 // The key is the course ID and the value will either be 1 or 0 (cast to bool).
234 // The cache isn't always up to date, it should only ever be used to save a costly call to
235 // can_access_course on the first page request a user makes.
236 'navigation_expandcourse' => array(
237 'mode' => cache_store::MODE_SESSION,
238 'simplekeys' => true,
242 // Caches suspended userids by course.
243 // The key is the courseid, the value is an array of user ids.
244 'suspended_userids' => array(
245 'mode' => cache_store::MODE_REQUEST,
246 'simplekeys' => true,
247 'simpledata' => true,
250 // Cache system-wide role definitions.
252 'mode' => cache_store::MODE_APPLICATION,
253 'simplekeys' => true,
254 'simpledata' => true,
255 'staticacceleration' => true,
256 'staticaccelerationsize' => 30,
259 // Caches plugins existing functions by function name and file.
260 // Set static acceleration size to 5 to load a few functions.
261 'plugin_functions' => array(
262 'mode' => cache_store::MODE_APPLICATION,
263 'simplekeys' => true,
264 'simpledata' => true,
265 'staticacceleration' => true,
266 'staticaccelerationsize' => 5
269 // Caches data about tag collections and areas.
271 'mode' => cache_store::MODE_REQUEST,
272 'simplekeys' => true,
273 'staticacceleration' => true,
276 // Grade categories. Stored at session level as invalidation is very aggressive.
277 'grade_categories' => array(
278 'mode' => cache_store::MODE_SESSION,
279 'simplekeys' => true,
280 'invalidationevents' => array(
281 'changesingradecategories',
285 // Store temporary tables information.
286 'temp_tables' => array(
287 'mode' => cache_store::MODE_REQUEST,
288 'simplekeys' => true,
292 // Caches tag index builder results.
293 'tagindexbuilder' => array(
294 'mode' => cache_store::MODE_SESSION,
295 'simplekeys' => true,
296 'simplevalues' => true,
297 'staticacceleration' => true,
298 'staticaccelerationsize' => 10,
299 'ttl' => 900, // 15 minutes.
300 'invalidationevents' => array(
301 'resettagindexbuilder',
305 // Caches message processors.
306 'message_processors_enabled' => array(
307 'mode' => cache_store::MODE_APPLICATION,
308 'simplekeys' => true,
309 'simpledata' => true,
310 'staticacceleration' => true,
311 'staticaccelerationsize' => 3
314 // Caches the time of the last message between two users.
315 'message_time_last_message_between_users' => array(
316 'mode' => cache_store::MODE_APPLICATION,
317 'simplekeys' => true, // The id of the sender and recipient is used.
318 'simplevalues' => true,
319 'datasource' => '\core_message\time_last_message_between_users',
322 // Caches font awesome icons.
323 'fontawesomeiconmapping' => array(
324 'mode' => cache_store::MODE_APPLICATION,
325 'simplekeys' => true,
326 'simpledata' => true,
327 'staticacceleration' => true,
328 'staticaccelerationsize' => 1
331 // Caches processed CSS.
332 'postprocessedcss' => array(
333 'mode' => cache_store::MODE_APPLICATION,
334 'simplekeys' => true,
335 'simpledata' => true,
336 'staticacceleration' => false,