Elgg  Version master
DataCache.php
Go to the documentation of this file.
1 <?php
2 
3 namespace Elgg\Cache;
4 
11 class DataCache extends CacheCollection {
12 
20  protected function create($namespace) {
21  return new CompositeCache($namespace, $this->config, ELGG_CACHE_RUNTIME);
22  }
23 }
Composite cache pool.
const ELGG_CACHE_RUNTIME
Definition: constants.php:122
create($namespace)
Create a new cache under a namespace.
Definition: DataCache.php:20
A collection of composite caches.