示例#1
0
 /**
  * Generates a unique key used for storing session data in Aerospike DB.
  *
  * @param string $sessionId Session variable name
  * @return array
  */
 protected function buildKey($sessionId)
 {
     return $this->db->initKey($this->namespace, $this->set, $this->prefix . $sessionId);
 }