Phalcon\Cache\Backend\Aerospike::buildKey PHP Method

buildKey() protected method

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