Phalcon\Cache\Backend\Aerospike::buildKey PHP 메소드

buildKey() 보호된 메소드

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