add() 공개 메소드

..
public add ( $index, $type, $id, $data )
예제 #1
0
파일: Indexer.php 프로젝트: raz0rsdge/horde
 public function index($index, $type, $id, $data)
 {
     try {
         $this->_es->add($index, $type, $id, $data);
     } catch (Horde_ElasticSearch_Exception $e) {
         throw new Content_Exception($e);
     }
 }