Exemplo n.º 1
1
 public function testFuzzySearch()
 {
     $this->prepareDbData();
     $queryParts = ["fuzzy_like_this" => ["fields" => ["title"], "like_text" => "Similar to YII", "max_query_terms" => 4]];
     $query = new Query();
     $query->from('yiitest', 'article');
     $query->query = $queryParts;
     $result = $query->search($this->getConnection());
     $this->assertEquals(3, $result['hits']['total']);
 }