Prado\Caching\TCache::generateUniqueKey PHP Method

generateUniqueKey() protected method

protected generateUniqueKey ( $key ) : sring
return sring a key generated from the provided key which ensures the uniqueness across applications
    protected function generateUniqueKey($key)
    {
        return md5($this->_prefix . $key);
    }