Doctrine\Common\Cache\ApcuCache::doDelete PHP Method

doDelete() protected method

protected doDelete ( $id )
    protected function doDelete($id)
    {
        // apcu_delete returns false if the id does not exist
        return apcu_delete($id) || !apcu_exists($id);
    }