本文整理汇总了PHP中MongoCollection::getIndexInfo方法的典型用法代码示例。如果您正苦于以下问题:PHP MongoCollection::getIndexInfo方法的具体用法?PHP MongoCollection::getIndexInfo怎么用?PHP MongoCollection::getIndexInfo使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MongoCollection
的用法示例。
在下文中一共展示了MongoCollection::getIndexInfo方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: _ensureIndex
/**
* Ensure index of correct specification and a unique name whether the specification or name already exist or not.
* Will not create index if $index is a prefix of an existing index
*
* @param array $index index to create in same format as \MongoCollection::ensureIndex()
*
* @return void
*
* @throws \Exception couldnt create index after 5 attempts
*/
private function _ensureIndex(array $index)
{
//if $index is a prefix of any existing index we are good
foreach ($this->_collection->getIndexInfo() as $existingIndex) {
$slice = array_slice($existingIndex['key'], 0, count($index), true);
if ($slice === $index) {
return;
}
}
for ($i = 0; $i < 5; ++$i) {
for ($name = uniqid(); strlen($name) > 0; $name = substr($name, 0, -1)) {
//creating an index with same name and different spec does nothing.
//creating an index with same spec and different name does nothing.
//so we use any generated name, and then find the right spec after we have called, and just go with that name.
try {
$this->_collection->ensureIndex($index, array('name' => $name, 'background' => true));
} catch (\MongoException $e) {
//this happens when the name was too long, let continue
}
foreach ($this->_collection->getIndexInfo() as $existingIndex) {
if ($existingIndex['key'] === $index) {
return;
}
}
}
}
throw new \Exception('couldnt create index after 5 attempts');
}
示例2: testGetIndexInfo
public function testGetIndexInfo()
{
$info = $this->object->getIndexInfo();
$this->assertEquals(count($info), 0);
$this->object->ensureIndex(array('foo' => 1));
$this->object->ensureIndex(array('foo' => -1));
$this->object->ensureIndex(array('bar' => 1, 'baz' => -1));
$info = $this->object->getIndexInfo();
$this->assertEquals(4, count($info), json_encode($info));
$this->assertEquals($info[1]['key']['foo'], 1);
$this->assertEquals($info[1]['name'], 'foo_1');
$this->assertEquals($info[2]['key']['foo'], -1);
$this->assertEquals($info[2]['name'], 'foo_-1');
$this->assertEquals($info[3]['key']['bar'], 1);
$this->assertEquals($info[3]['key']['baz'], -1);
$this->assertEquals($info[3]['name'], 'bar_1_baz_-1');
}
示例3: getIndexInfo
/**
* Wrapper method for MongoCollection::getIndexInfo().
*
* @see http://php.net/manual/en/mongocollection.getindexinfo.php
* @return array
*/
public function getIndexInfo()
{
return $this->mongoCollection->getIndexInfo();
}
示例4: getIndexInfo
/**
* getIndexInfo.
*/
public function getIndexInfo()
{
$this->time->start();
$return = parent::getIndexInfo();
$time = $this->time->stop();
$this->log(array('type' => 'getIndexInfo', 'time' => $time));
return $return;
}