Ejemplo n.º 1
0
 /**
  * Returns the total number of non-deleted documents in this index.
  *
  * @return integer
  */
 public function numDocs()
 {
     return $this->_index->numDocs();
 }
Ejemplo n.º 2
0
 /**
  * Get the document count
  *
  * @return  int                     Document count
  */
 public function getDocumentCount()
 {
     return $this->_data->numDocs();
 }