Prado\Caching\TCache::delete PHP Method

delete() public method

Deletes a value with the specified key from cache
public delete ( $id ) : boolean
return boolean if no error happens during deletion
    public function delete($id)
    {
        return $this->deleteValue($this->generateUniqueKey($id));
    }