CI_Cache::delete PHP Method

delete() public method

Delete from Cache
public delete ( string $id ) : boolean
$id string Cache ID
return boolean TRUE on success, FALSE on failure
    public function delete($id)
    {
        return $this->{$this->_adapter}->delete($this->key_prefix . $id);
    }