예제 #1
0
 /**
  * Delete Cache
  *
  * @param string $key Cache key
  * @return void
  */
 function delete($key)
 {
     if (!$this->handler) {
         return false;
     }
     return $this->handler->delete($key);
 }
예제 #2
0
 /**
  * Delete Cache
  *
  * @param string $key Cache key
  * @return void
  */
 function delete($key)
 {
     if (!$this->handler) {
         return false;
     }
     $key = $this->getCacheKey($key);
     return $this->handler->delete($key);
 }