Neos\Cache\Backend\MemcachedBackend::findTagsByIdentifier PHP Method

findTagsByIdentifier() protected method

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
return array Array with tags
    protected function findTagsByIdentifier($identifier)
    {
        $tags = $this->memcache->get($this->identifierPrefix . 'ident_' . $identifier);
        return $tags === false ? [] : (array) $tags;
    }