Phalcon\Cache\Backend\Aerospike::buildKey PHP Méthode

buildKey() protected méthode

Generates a unique key used for storing cache data in Aerospike DB.
protected buildKey ( string $key ) : array
$key string Cache key
Résultat array
    protected function buildKey($key)
    {
        return $this->db->initKey($this->namespace, $this->set, $key);
    }