Neos\Flow\Mvc\Routing\RouterCachingService::buildRouteCacheIdentifier PHP Method

buildRouteCacheIdentifier() protected method

Generates the Matching cache identifier for the given Request
protected buildRouteCacheIdentifier ( Request $httpRequest ) : string
$httpRequest Neos\Flow\Http\Request
return string
    protected function buildRouteCacheIdentifier(Request $httpRequest)
    {
        return md5(sprintf('%s_%s_%s', $httpRequest->getUri()->getHost(), $httpRequest->getRelativePath(), $httpRequest->getMethod()));
    }