Neos\Cache\Backend\ApcBackend::getPrefixedIdentifier PHP Method

getPrefixedIdentifier() public method

While Flow applications will mostly refer to the simple entry identifier, it may be necessary to know the actual identifier used by the cache backend in order to share cache entries with other applications. This method allows for retrieving it.
public getPrefixedIdentifier ( string $entryIdentifier ) : string
$entryIdentifier string The short entry identifier, for example "NumberOfPostedArticles"
return string The prefixed identifier, for example "Flow694a5c7a43a4_NumberOfPostedArticles"
    public function getPrefixedIdentifier($entryIdentifier)
    {
        return $this->identifierPrefix . 'entry_' . $entryIdentifier;
    }