Neos\Cache\Backend\MemcachedBackend::findTagsByIdentifier PHP Метод

findTagsByIdentifier() защищенный Метод

Finds all tags for the given identifier. This function uses reverse tag index to search for tags.
protected findTagsByIdentifier ( string $identifier ) : array
$identifier string Identifier to find tags by
Результат array Array with tags
    protected function findTagsByIdentifier($identifier)
    {
        $tags = $this->memcache->get($this->identifierPrefix . 'ident_' . $identifier);
        return $tags === false ? [] : (array) $tags;
    }