Example #1
0
 /**
  * @inheritdoc
  */
 public function delete($key_or_keys)
 {
     $start = microtime(true);
     $res = $this->instance->delete($key_or_keys);
     $this->update_stats(__FUNCTION__, $start, $key_or_keys);
     return $res;
 }
Example #2
0
 /**
  * (non-PHPdoc)
  * @see CacheInterface::delete()
  */
 public function delete($key)
 {
     $this->proxyStore->delete($key);
     $this->backend->delete($key);
 }
Example #3
0
 /**
  * (non-PHPdoc)
  * @see Cache::delete()
  */
 public function delete($key)
 {
     $this->init();
     return $this->backend->delete($key);
 }