CacheTool\Proxy\ApcuProxy::apcu_delete PHP Method

apcu_delete() public method

Removes a stored variable from the cache
Since: 3.1.1
public apcu_delete ( mixed $key ) : mixed
$key mixed The key used to store the value (with apcu_store()).
return mixed Returns TRUE on success or FALSE on failure.
    public function apcu_delete($key)
    {
        $code = new Code();
        $code->addStatement(sprintf('return apcu_delete(%s);', var_export($key, true)));
        return $this->adapter->run($code);
    }