Neos\Flow\Mvc\Routing\RouterCachingService::buildRouteCacheIdentifier PHP 메소드

buildRouteCacheIdentifier() 보호된 메소드

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