FOSElasticaBundle
FOSElasticaBundle copied to clipboard
Elasticsearch PHP integration for your Symfony project using Elastica.
**Current state:** The symfony profiler is giving erroneous information that indicates that no elasticsearch query has been executed when `$config['defer'] = true ` Issues ref: https://github.com/FriendsOfSymfony/FOSElasticaBundle/issues/1788
Need to implements **LateDataCollectorInterface** in \FOS\ElasticaBundle\DataCollector\ElasticaDataCollector to profiling elastica request when `$config['defer'] = true`
I wanted to implement the "dfs_query_then_fetch" option, but HybridPaginator did not have options yet.
I need to use pagination and everything that I have used so far is not working for me. Last shoot was with Scroll but it was giving me issues. I...
Hi there. I'm using `Symfony 5.2.x` with `FoSElasticaBundle v6.0.0-beta3` and `ElasticSearch 7.10.2` I've updated my code but I'm getting the error when running `php bin/console lint:container` ``` [ERROR] Invalid definition...
Hi, I noticed that get and _mget requests always have an item count at 0 in the SF profiler. This made me wrongly belive that one of my get requests...
I am trying to use a custom repository as described here: https://github.com/FriendsOfSymfony/FOSElasticaBundle/blob/7f3d131a8cf58cf83f40d85bcd49c03bb0e7caea/doc/cookbook/custom-repositories.md Here is my code ```yaml # config/packages/fos_elastica.yaml fos_elastica: clients: default: { url: '%env(ELASTICSEARCH_URL)%' } indexes: example_index: properties: myProperty:...
I do not have Doctrine installed in my Symfony application. I use FOSElasticaBundle 6.0.x-dev with the following configuration: ```yaml fos_elastica: clients: default: { url: '%env(ELASTICSEARCH_URL)%' } indexes: my_index: use_alias: true...
Greetings, we are using this bundle with ES 5.6 and the ingest attachment plugin to get rid of the old mapper attachment integration. The pipeline workflow was quite new to...
Hello, Elasticsearch version: 6.0 FosElasticaBundle version: 5.2 Symfony version: 3.4 Recently I've applied the serch code from the Documentation to my code. I did this, due to finding out that...