indexStats() 공개 메소드

Returns statistics regarding the use of each index for the collection.
또한 보기: https://docs.mongodb.org/manual/reference/operator/aggregation/indexStats/
public indexStats ( ) : Doctrine\MongoDB\Aggregation\Stage\IndexStats
리턴 Doctrine\MongoDB\Aggregation\Stage\IndexStats
예제 #1
0
파일: Stage.php 프로젝트: alcaeus/mongodb
 /**
  * Returns statistics regarding the use of each index for the collection.
  *
  * @see https://docs.mongodb.org/manual/reference/operator/aggregation/indexStats/
  *
  * @return Stage\IndexStats
  */
 public function indexStats()
 {
     return $this->builder->indexStats();
 }