コード例 #1
0
ファイル: Data.php プロジェクト: tingyeeh/magento2
 /**
  * Clear cache data
  * @return void
  */
 public function reset()
 {
     $this->cache->remove($this->cacheId);
 }
コード例 #2
0
ファイル: NamespacedCache.php プロジェクト: kuria/cache
 public function remove($key)
 {
     return $this->wrappedCache->remove($this->prefix . $key);
 }