/**
  * Returns collection size.
  *
  * @return int
  */
 public function getSize()
 {
     $helper = Mage::helper('smile_elasticsearch');
     if (!$helper->isActiveEngine()) {
         return parent::getSize();
     }
     if (is_null($this->_totalRecords)) {
         $this->_beforeLoad();
     }
     return $this->_totalRecords;
 }