Pimcore\Cache\Backend\Memcached::getTagsById PHP Метод

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

protected getTagsById ( string $id ) : array
$id string
Результат array tags for given id
    protected function getTagsById($id)
    {
        $itemIds = $this->getDb()->fetchCol("SELECT tag FROM cache_tags WHERE id = ?", $id);
        return $itemIds;
    }