Esempio n. 1
0
 /**
  * Describes the keyspace itself.
  * @return cassandra_KsDefs
  */
 public function getMetaData()
 {
     // If the meta data has not been retrieved
     if (!is_object($this->_metadata)) {
         $this->_metadata = $this->_connectionPool->describe_keyspace();
     }
     return $this->_metadata;
 }