I want to use Elasticsearch in my Project. I have the following code:
SearchController
/**
* @Route("/api/elasticsearch" )
*/
public function viewElasticsearch(Request $request)
{
$query = $request->get('term');
if (empty($query)) {
return new JsonResponse([]);
}
if (substr($query, -1) !== '*') {
$query .= '';
}
$finder = $this->container->get('fos_elastica.finder.app.product');
$products = $finder->find($query);
foreach ($products as $entity) {
$result['results'][] = [
'id' => $entity->getId(),
'text' => $entity->getName(),
'sku' => $entity->getSku(),
];
}
return new JsonResponse($result);
}
Javascript
<script>
$('.js-data-example-ajax').select2({
ajax: {
url: '/product/api/elasticsearch',
dataType: 'json',
width: 'resolve', // need to override the changed default
minimumResultsForSearch: -1,
dropdownCssClass: 'select2-hidden',
}
});
</script>
If I call a search query through the command line :
curl -X GET 'http://localhost:9200/app/product/_search?q=*iphone*&size=500'
I get 381 results from the search above, but if I do the same search from Symfony I get 8 results. How can I do a wildcard search in Symfony ?