FOSElasticaBundle
FOSElasticaBundle copied to clipboard
Elasticsearch PHP integration for your Symfony project using Elastica.
I would like to know if there is a way like Doctrine to have an `index_suffix` to use it with *Paratest* ? And to have different index in dev and...
Did anyone have completer or something near complete guide to use symfony/messenger for populating process? Seems that community need to have information about enabling async persister, using custom pager provider...
The [Usage Documentation](https://github.com/FriendsOfSymfony/FOSElasticaBundle/blob/master/doc/usage.md), shows the following [example](https://github.com/FriendsOfSymfony/FOSElasticaBundle/blob/master/doc/usage.md#aggregations) to get Aggregation data: ``` ... $aggs = $companies->getAdapter()->getAggregations(); ``` This is outdated, since Pagerfanta deprecated `->getAdapter()` and there is no `->getAggregations()` function...
I prepared a query ``` $query = new Query\BoolQuery(); ``` and after that i created a new aggregation and i added this to the query object with this code: ```...
I'm trying to automatically create mappings based on serializer annotations as documented here: https://github.com/FriendsOfSymfony/FOSElasticaBundle/blob/master/doc/serializer.md When I run `bin/console fos:elastica:create` the index is created as expected but when i run ```...
I have an index with multiple types. When i run the following command `fos:el:reset --index=[MY_INDEX] --type=[MY_TYPE]` It resets the entire index, not only the given type.
FOS/Elastic version: 5.1.x-dev Issue happens if we use `type: keyword` alongside a `array` Doctrine field type. This is our setup: ``` types: recruiters: properties: roleTypes: type: keyword ``` Than on...
fix
Hello, I am trying to define a parent/child relation according to https://github.com/FriendsOfSymfony/FOSElasticaBundle/blob/master/doc/types.md#parent-fields My config for the two entities looks like following: ``` item: serializer: groups: [elastica] persistence: driver: orm model:...
I'm looking for solution to search through multiple indices, and in the same time be able to get paginated result. I found here https://github.com/FriendsOfSymfony/FOSElasticaBundle/issues/1385 that it's possible to search in...