Jump to main content Jump to doc navigation

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');

See Also

  • Caching – the full options are documented on the xPDO caching page.
  • modX