modX.getCacheManager
Last updated not available | Page history | Improve this page | Report an issue
modX::getCacheManager¶
Get an extended xPDOCacheManager
instance responsible for MODX caching.
Overrides xPDO::getCacheManager
.
Syntax¶
API Doc: modX::getCacheManager()
object getCacheManager([string $class = ''], [[array $options = array('path' => XPDO_CORE_PATH, 'ignorePkg' => true)]])
-
$class
(string) The class name of the cache manager to load -
$options
(array) An array of options to send to the cache manager instance
Example¶
Get the Cache Manager to set a dummy cache file.
$cacheManager = $modx->getCacheManager();
$cacheManager->set('testcachefile','test123');