Cachearium\Backend\CacheMemcached::getGroupString PHP Méthode

getGroupString() private méthode

Converts cachekey to a string for the data group.
private getGroupString ( CacheKey $k ) : string
$k Cachearium\CacheKey
Résultat string
    private function getGroupString(CacheKey $k)
    {
        return md5(strtr($this->namespace . $k->getBase() . $k->getId(), ' ', '_'));
    }