delete() публичный Метод

Deletes a value with the specified key from cache
public delete ( string $key )
$key string
Пример #1
0
 /**
  * @param string $key
  *
  * @return void
  */
 public function delete($key)
 {
     $this->adapter->delete($this->_prefix . $key);
 }