phprs\util\RedisCache::del PHP Method

del() public method

删除key
public del ( string $key ) : boolean
$key string
return boolean
    public function del($key)
    {
        return $this->getImpl()->delete($key) == 1;
    }