elasticsearch
elasticsearch copied to clipboard
The missing elasticsearch ORM for Laravel, Lumen and Native php applications
Hi Could you provide a way to adding query string like [Common options](https://www.elastic.co/guide/en/elasticsearch/reference/current/common-options.html) ? Something like this : In Basemkhirat\Elasticsearch\ScoutEngine::performSearch() ```PHP $params = [ 'index' => $this->index, 'type' => $builder->model->searchableAs(),...
Is there a way to remove a type from mappings?
does the package contain orWhere implementation ?
This repository looks really great. Is there also a solution for aggregation metrics? regards Ppeer
In elasticsearch we can pass the id (ex: if the model is already in mysql we have a id and want to use same id in ES as well) In...
hi @basemkhirat i used nested type in my_document.. and when i run my query the result that returns to me show the hole document.. while i want to show me...
hi @basemkhirat I index my data using scout and toSearchableArray() method in the present, I have an Index.. and with toSearchableArray() I had indexed my models to two different types.....
Hi, I just updated from 1.1 to 1.2 and now I get this error message while running a query. Thing to note, is that I'm using your package in a...
hi @basemkhirat I wrote my own search query, and it works great.. thanks the issue that I have here is; I want to speed up my search, and one of...
when i use `ES::type('listings')->search('ile')->get();` it show results 1.ile maurice 2. ile more ile No other string having ile in it like mobile When i use `ES::type('listings')->search('more')->get();` It show 1.more but...