Elasticsearch\Bulk::count PHP Method

count() public method

count all pending operations
public count ( ) : integer
return integer
    public function count()
    {
        return count($this->operations);
    }

Usage Example

Exemplo n.º 1
0
 /**
  * commit a bulk-transaction
  * @return array
  * @throws Exception
  */
 public function commitBulk()
 {
     if ($this->bulk && $this->bulk->count()) {
         $result = $this->bulk->commit();
         $this->bulk = null;
         return $result;
     }
     throw new Exception('bulk error!');
 }