Moodle APIs 3.9
Moodle 3.9.13+ (Build: 20220325)
|
An request cache. More...
Public Member Functions | |
delete ($key, $recurse=true) | |
Delete the given key from the cache. More... | |
delete_many (array $keys, $recurse=true) | |
Delete all of the given keys from the cache. More... | |
get ($key, $strictness=IGNORE_MISSING) | |
Retrieves the value for the given key from the cache. More... | |
get_many (array $keys, $strictness=IGNORE_MISSING) | |
Retrieves an array of values for an array of keys. More... | |
has ($key) | |
Test is a cache has a key. More... | |
has ($key, $tryloadifpossible=false) | |
Test is a cache has a key. More... | |
has_all (array $keys) | |
Test is a cache has all of the given keys. More... | |
has_any (array $keys) | |
Test if a cache has at least one of the given keys. More... | |
purge () | |
Purges the cache store, and loader if there is one. More... | |
purge_current_user () | |
Subclasses may support purging cache of all data belonging to the current user. More... | |
set ($key, $data) | |
Sends a key => value pair to the cache. More... | |
set_identifiers (array $identifiers) | |
Alters the identifiers that have been provided to the definition. More... | |
set_many (array $keyvaluearray) | |
Sends several key => value pairs to the cache. More... | |
Static Public Member Functions | |
static | compare_purge_tokens ($tokena, $tokenb) |
Compare a pair of purge tokens. More... | |
static | get_purge_token ($reset=false) |
Get a 'purge' token used for cache invalidation handling. More... | |
static | make ($component, $area, array $identifiers=array(), $unused=null) |
Creates a new cache instance for a pre-defined definition. More... | |
static | make_from_params ($mode, $component, $area, array $identifiers=array(), array $options=array()) |
Creates a new cache instance based upon the given params. More... | |
static | now ($float=false) |
Returns the timestamp from the first request for the time from the cache API. More... | |
Protected Member Functions | |
deep_clone ($value) | |
Creates a reference free clone of the given value. More... | |
delete_from_persist_cache () | |
get_datasource () | |
Returns the data source associated with this cache. More... | |
get_definition () | |
Returns the cache definition. More... | |
get_from_persist_cache () | |
get_loader () | |
Returns the loader associated with this instance. More... | |
get_store () | |
Returns the cache store. More... | |
handle_invalidation_events () | |
Process any outstanding invalidation events for the cache we are registering,. More... | |
has_a_ttl () | |
Returns true if the cache is making use of a ttl. More... | |
is_in_persist_cache () | |
is_using_persist_cache () | |
parse_key ($key) | |
Parses the key turning it into a string (or array is required) suitable to be passed to the cache store. More... | |
requires_serialisation ($value, $depth=1) | |
Checks to see if a var requires serialisation. More... | |
set_data_source (cache_data_source $datasource) | |
Set the data source for this cache. More... | |
set_in_persist_cache () | |
set_is_sub_loader ($setting=true) | |
Used to inform the loader of its state as a sub loader, or as the top of the chain. More... | |
set_loader (cache_loader $loader) | |
Set the loader for this cache. More... | |
static_acceleration_delete ($key) | |
Deletes an item from the static acceleration array. More... | |
static_acceleration_get ($key) | |
Returns the item from the static acceleration array if it exists there. More... | |
static_acceleration_has ($key) | |
Returns true if the requested key exists within the static acceleration array. More... | |
static_acceleration_purge () | |
Purge the static acceleration cache. | |
static_acceleration_set ($key, $data) | |
Sets a key value pair into the static acceleration array. More... | |
store_supports_key_awareness () | |
Returns true if the store supports key awareness. More... | |
store_supports_native_locking () | |
Returns true if the store natively supports locking. More... | |
store_supports_native_ttl () | |
Returns true if the cache store supports native ttl. More... | |
unref ($data) | |
Removes references where required. More... | |
use_static_acceleration () | |
Returns true if this cache is making use of the static acceleration array. More... | |
Protected Attributes | |
bool | $perfdebug = false |
Gets set to true if we want to collect performance information about the cache API. | |
strubg | $storetype = 'unknown' |
Gets set to the class name of the store during initialisation. More... | |
bool | $subloader = false |
Determines if this loader is a sub loader, not the top of the chain. | |
Static Protected Attributes | |
static int | $now |
We need a timestamp to use within the cache API. More... | |
static string | $purgetoken |
A purge token used to distinguish between multiple cache purges in the same second. More... | |
An request cache.
This class is used for request caches returned by the cache::make methods.
This cache class should never be interacted with directly. Instead you should always use the cache::make methods. It is technically possible to call those methods through this class however there is no guarantee that you will get an instance of this class back again.
|
staticinherited |
Compare a pair of purge tokens.
If the two tokens are identical, then the return value is 0. If the time component of token A is newer than token B, then a positive value is returned. If the time component of token B is newer than token A, then a negative value is returned.
Note: This function is intended for use from within the Cache API only and not by plugins, or cache stores.
string | $tokena | |
string | $tokenb |
int |
|
protectedinherited |
Creates a reference free clone of the given value.
mixed | $value |
mixed |
|
inherited |
Delete the given key from the cache.
string | int | $key | The key to delete. |
bool | $recurse | When set to true the key will also be deleted from all stacked cache loaders and their stores. This happens by default and ensure that all the caches are consistent. It is NOT recommended to change this. |
bool | True of success, false otherwise. |
Implements cache_loader.
Reimplemented in cache_application, cache_session, and cache_disabled.
|
protectedinherited |
|
inherited |
Delete all of the given keys from the cache.
array | $keys | The key to delete. |
bool | $recurse | When set to true the key will also be deleted from all stacked cache loaders and their stores. This happens by default and ensure that all the caches are consistent. It is NOT recommended to change this. |
int | The number of items successfully deleted. |
Implements cache_loader.
Reimplemented in cache_application, cache_session, and cache_disabled.
|
inherited |
Retrieves the value for the given key from the cache.
string | int | $key | The key for the data being requested. It can be any structure although using a scalar string or int is recommended in the interests of performance. In advanced cases an array may be useful such as in situations requiring the multi-key functionality. |
int | $strictness | One of IGNORE_MISSING | MUST_EXIST |
mixed|false | The data from the cache or false if the key did not exist within the cache. |
coding_exception |
Implements cache_loader.
Reimplemented in cache_application, cache_session, and cache_disabled.
|
protectedinherited |
Returns the data source associated with this cache.
cache_data_source|false |
|
protectedinherited |
Returns the cache definition.
cache_definition |
|
protectedinherited |
|
protectedinherited |
Returns the loader associated with this instance.
cache|false |
|
inherited |
Retrieves an array of values for an array of keys.
Using this function comes with potential performance implications. Not all cache stores will support get_many/set_many operations and in order to replicate this functionality will call the equivalent singular method for each item provided. This should not deter you from using this function as there is a performance benefit in situations where the cache store does support it, but you should be aware of this fact.
array | $keys | The keys of the data being requested. Each key can be any structure although using a scalar string or int is recommended in the interests of performance. In advanced cases an array may be useful such as in situations requiring the multi-key functionality. |
int | $strictness | One of IGNORE_MISSING or MUST_EXIST. |
array | An array of key value pairs for the items that could be retrieved from the cache. If MUST_EXIST was used and not all keys existed within the cache then an exception will be thrown. Otherwise any key that did not exist will have a data value of false within the results. |
coding_exception |
Implements cache_loader.
Reimplemented in cache_application, cache_session, and cache_disabled.
|
staticinherited |
Get a 'purge' token used for cache invalidation handling.
Note: This function is intended for use from within the Cache API only and not by plugins, or cache stores.
bool | $reset | Whether to reset the token and generate a new one. |
string |
|
protectedinherited |
Returns the cache store.
cache_store |
|
protectedinherited |
Process any outstanding invalidation events for the cache we are registering,.
Identifiers and event invalidation are not compatible with each other at this time. As a result the cache does not need to consider identifiers when working out what to invalidate.
|
inherited |
Test is a cache has a key.
The use of the has methods is strongly discouraged. In a high load environment the cache may well change between the test and any subsequent action (get, set, delete etc). Instead it is recommended to write your code in such a way they it performs the following steps:
Its also worth mentioning that not all stores support key tests. For stores that don't support key tests this functionality is mimicked by using the equivalent get method. Just one more reason you should not use these methods unless you have a very good reason to do so.
string | int | $key |
bool | True if the cache has the requested key, false otherwise. |
|
inherited |
Test is a cache has a key.
The use of the has methods is strongly discouraged. In a high load environment the cache may well change between the test and any subsequent action (get, set, delete etc). Instead it is recommended to write your code in such a way they it performs the following steps:
Its also worth mentioning that not all stores support key tests. For stores that don't support key tests this functionality is mimicked by using the equivalent get method. Just one more reason you should not use these methods unless you have a very good reason to do so.
string | int | $key | |
bool | $tryloadifpossible | If set to true, the cache doesn't contain the key, and there is another cache loader or data source then the code will try load the key value from the next item in the chain. |
bool | True if the cache has the requested key, false otherwise. |
Reimplemented in cache_session, and cache_disabled.
|
protectedinherited |
Returns true if the cache is making use of a ttl.
bool |
|
inherited |
Test is a cache has all of the given keys.
It is strongly recommended to avoid the use of this function if not absolutely required. In a high load environment the cache may well change between the test and any subsequent action (get, set, delete etc).
Its also worth mentioning that not all stores support key tests. For stores that don't support key tests this functionality is mimicked by using the equivalent get method. Just one more reason you should not use these methods unless you have a very good reason to do so.
array | $keys |
bool | True if the cache has all of the given keys, false otherwise. |
Implements cache_loader.
Reimplemented in cache_session, and cache_disabled.
|
inherited |
Test if a cache has at least one of the given keys.
It is strongly recommended to avoid the use of this function if not absolutely required. In a high load environment the cache may well change between the test and any subsequent action (get, set, delete etc).
Its also worth mentioning that not all stores support key tests. For stores that don't support key tests this functionality is mimicked by using the equivalent get method. Just one more reason you should not use these methods unless you have a very good reason to do so.
array | $keys |
bool | True if the cache has at least one of the given keys |
Implements cache_loader.
Reimplemented in cache_session, and cache_disabled.
|
protectedinherited |
|
protectedinherited |
|
staticinherited |
Creates a new cache instance for a pre-defined definition.
string | $component | The component for the definition |
string | $area | The area for the definition |
array | $identifiers | Any additional identifiers that should be provided to the definition. |
string | $unused | Used to be datasourceaggregate but that was removed and this is now unused. |
cache_application|cache_session|cache_store |
|
staticinherited |
Creates a new cache instance based upon the given params.
int | $mode | One of cache_store::MODE_* |
string | $component | The component this cache relates to. |
string | $area | The area this cache relates to. |
array | $identifiers | Any additional identifiers that should be provided to the definition. |
array | $options | An array of options, available options are:
|
cache_application|cache_session|cache_store |
|
staticinherited |
Returns the timestamp from the first request for the time from the cache API.
This stamp needs to be used for all ttl and time based operations to ensure that we don't end up with timing issues.
bool | $float | Whether to use floating precision accuracy. |
int|float |
|
protectedinherited |
Parses the key turning it into a string (or array is required) suitable to be passed to the cache store.
string | int | $key | As passed to get|set|delete etc. |
string|array | String unless the store supports multi-identifiers in which case an array if returned. |
Reimplemented in cache_session.
|
inherited |
Purges the cache store, and loader if there is one.
bool | True on success, false otherwise |
Reimplemented in cache_session, and cache_disabled.
|
inherited |
Subclasses may support purging cache of all data belonging to the current user.
Reimplemented in cache_session.
|
protectedinherited |
Checks to see if a var requires serialisation.
mixed | $value | The value to check. |
int | $depth | Used to ensure we don't enter an endless loop (think recursion). |
bool | Returns true if the value is going to require serialisation in order to ensure a reference free copy or false if its safe to clone. |
|
inherited |
Sends a key => value pair to the cache.
// This code will add four entries to the cache, one for each url. $cache->set('main', 'http://moodle.org'); $cache->set('docs', 'http://docs.moodle.org'); $cache->set('tracker', 'http://tracker.moodle.org'); $cache->set('qa', 'http://qa.moodle.net');
string | int | $key | The key for the data being requested. It can be any structure although using a scalar string or int is recommended in the interests of performance. In advanced cases an array may be useful such as in situations requiring the multi-key functionality. |
mixed | $data | The data to set against the key. |
bool | True on success, false otherwise. |
Implements cache_loader.
Reimplemented in cache_application, cache_session, and cache_disabled.
|
protectedinherited |
Set the data source for this cache.
cache_data_source | $datasource |
|
inherited |
Alters the identifiers that have been provided to the definition.
This is an advanced method and should not be used unless really needed. It allows the developer to slightly alter the definition without having to re-establish the cache. It will cause more processing as the definition will need to clear and reprepare some of its properties.
array | $identifiers |
|
protectedinherited |
|
protectedinherited |
Used to inform the loader of its state as a sub loader, or as the top of the chain.
This is important as it ensures that we do not have more than one loader keeping static acceleration data. Subloaders need to be "pure" loaders in the sense that they are used to store and retrieve information from stores or the next loader/data source in the chain. Nothing fancy, nothing flash.
bool | $setting |
|
protectedinherited |
Set the loader for this cache.
cache_loader | $loader |
|
inherited |
Sends several key => value pairs to the cache.
Using this function comes with potential performance implications. Not all cache stores will support get_many/set_many operations and in order to replicate this functionality will call the equivalent singular method for each item provided. This should not deter you from using this function as there is a performance benefit in situations where the cache store does support it, but you should be aware of this fact.
// This code will add four entries to the cache, one for each url. $cache->set_many(array( 'main' => 'http://moodle.org', 'docs' => 'http://docs.moodle.org', 'tracker' => 'http://tracker.moodle.org', 'qa' => ''http://qa.moodle.net' ));
array | $keyvaluearray | An array of key => value pairs to send to the cache. |
int | The number of items successfully set. It is up to the developer to check this matches the number of items. ... if they care that is. |
Implements cache_loader.
Reimplemented in cache_application, cache_session, and cache_disabled.
|
protectedinherited |
Deletes an item from the static acceleration array.
string | int | $key | As given to get|set|delete |
bool | True on success, false otherwise. |
|
protectedinherited |
Returns the item from the static acceleration array if it exists there.
string | $key | The parsed key |
mixed|false | Dereferenced data from the static acceleration array or false if it wasn't there. |
|
protectedinherited |
Returns true if the requested key exists within the static acceleration array.
string | $key | The parsed key |
bool |
|
protectedinherited |
Sets a key value pair into the static acceleration array.
string | $key | The parsed key |
mixed | $data |
bool |
|
protectedinherited |
Returns true if the store supports key awareness.
bool |
|
protectedinherited |
Returns true if the store natively supports locking.
bool |
|
protectedinherited |
Returns true if the cache store supports native ttl.
bool |
|
protectedinherited |
Removes references where required.
stdClass | array | $data |
mixed | What ever was put in but without any references. |
|
protectedinherited |
Returns true if this cache is making use of the static acceleration array.
bool |
Reimplemented in cache_session.
|
staticprotectedinherited |
We need a timestamp to use within the cache API.
This stamp needs to be used for all ttl and time based operations to ensure that we don't end up with timing issues.
|
staticprotectedinherited |
A purge token used to distinguish between multiple cache purges in the same second.
This is in the format <microtime>-<random string>.
|
protectedinherited |
Gets set to the class name of the store during initialisation.
This is used several times in the cache class internally and having it here helps speed up processing.