Cachearium\Backend\CacheMemcached::getGroupString PHP 메소드

getGroupString() 개인적인 메소드

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