18 $decorator = $this->
copy();
20 $decorator->cache =&
$cache;
21 $decorator->type =
$cache->type;
32 public function add($def, $config) {
33 return $this->cache->add($def, $config);
36 public function set($def, $config) {
37 return $this->cache->set($def, $config);
41 return $this->cache->replace($def, $config);
44 public function get($config) {
45 return $this->cache->get($config);
48 public function remove($config) {
49 return $this->cache->remove($config);
52 public function flush($config) {
53 return $this->cache->flush($config);
57 return $this->cache->cleanup($config);