1. Go to this page and download the library: Download codemix/yiielasticsearch library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?phprequire_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
classMyModelextendsCActiveRecord{
/**
* @param DocumentInterface $document the document where the indexable data must be applied to.
*/publicfunctionpopulateElasticDocument(DocumentInterface $document){
$document->setId($this->id);
$document->name = $this->name;
$document->street = $this->street;
}
/**
* @param DocumentInterface $document the document that is providing the data for this record.
*/publicfunctionparseElasticDocument(DocumentInterface $document){
// You should always set the match score from the result documentif ($document instanceof SearchResult)
$this->setElasticScore($document->getScore());
$this->id = $document->getId();
$this->name = $document->name;
$this->street = $document->stree;
}
$search = new \YiiElasticSearch\Search("myindex", "mymodel");
$search->query = array(
"match_all" => array()
);
// start returning results from the 20th onwards
$search->offset = 20;