17 public function add($def, $config) {
18 $status = parent::add($def, $config);
19 if (!$status) parent::cleanup($config);
23 public function set($def, $config) {
24 $status = parent::set($def, $config);
25 if (!$status) parent::cleanup($config);
30 $status = parent::replace($def, $config);
31 if (!$status) parent::cleanup($config);
35 public function get($config) {
36 $ret = parent::get($config);
37 if (!
$ret) parent::cleanup($config);
Definition cache decorator class that cleans up the cache whenever there is a cache miss...