(no description)
File Size: | 77 lines (3 kb) |
Included or required: | 0 times |
Referenced: | 0 times |
Includes or requires: | 0 files |
elements:: (3 methods):
get_instance_for_cache()
load_for_cache()
load_many_for_cache()
get_instance_for_cache(cache_definition $definition) X-Ref |
Returns an instance of the data source class that the cache can use for loading data using the other methods specified by this interface. param: cache_definition $definition return: object |
load_for_cache($key) X-Ref |
Loads the data for the key provided ready formatted for caching. param: string|int $key The key to load. return: string What ever data should be returned, or null if it can't be loaded. |
load_many_for_cache(array $keys) X-Ref |
Loads several keys for the cache. param: array $keys An array of keys each of which will be string|int. return: array An array of matching data items. |