Imdb\Pages::getCacheKey PHP Method

getCacheKey() protected method

protected getCacheKey ( $url )
    protected function getCacheKey($url)
    {
        $urlParts = parse_url($url);
        $cacheKey = $urlParts['path'] . (isset($urlParts['query']) ? '?' . $urlParts['query'] : '');
        return trim($cacheKey, '/');
    }