WPCOM_VIP_Cache_Manager::queue_purge_url PHP Method

queue_purge_url() public method

PURGE a single URL
public queue_purge_url ( string $url ) : boolean
$url string The specific URL to purge the cache for
return boolean True on success
    public function queue_purge_url($url)
    {
        $url = esc_url_raw($url);
        $url = wp_http_validate_url($url);
        if (false === $url) {
            return false;
        }
        $this->purge_urls[] = $url;
        return true;
    }