Horde_Memcache::_key PHP Method

_key() protected method

Obtains the md5 sum for a key.
protected _key ( string $key ) : string
$key string The key.
return string The corresponding memcache key.
    protected function _key($key)
    {
        return $this->_memcache instanceof Memcached ? $key : hash('md5', $this->_params['prefix'] . $key);
    }