FOSElasticaBundle
FOSElasticaBundle copied to clipboard
Elasticsearch PHP integration for your Symfony project using Elastica.
Hello, I am discovering ElasticSearch and this bundle, and for several hours I have been trying to perform a partial query on all the fields. To get the results which...
Getting the following notice: ``` 2022-06-07T13:05:58+02:00 [info] User Deprecated: Since symfony/console 6.1: Relying on the static property "$defaultName" for setting a command name is deprecated. Add the "Symfony\Component\Console\Attribute\AsCommand" attribute to...
Hello, I have added a new property in my config and it does not reflect on live server, but works just fine in my local setup. I have added the...
**Search code snippet** ``` $boolQuery = new \Elastica\Query\BoolQuery(); $fieldQuery = new \Elastica\Query\MatchQuery(); $fieldQuery->setFieldQuery('name', 'Alt'); $boolQuery->addShould($fieldQuery); $data = $this->finder->find($boolQuery); ``` **Logs** ``` [Application] Jul 11 09:29:30 |INFO | ELASTI category/_search (POST)...
I followed the [documentation](https://github.com/FriendsOfSymfony/FOSElasticaBundle/blob/master/doc/setup.md), installed v6.0.0-beta4 to be able to use with my ElasticSearch v7.13.4. Then run the recipe for the basic configuration. ![Captura de Tela 2021-07-22 às 12 08...
What are the plans regarding support for elasticsearch 8.x? Or does it work already? I guess you are mostly waiting for a corresponding update by the https://github.com/ruflin/Elastica/ dependency?
Hello! I have just set up a single node Elasticsearch instance, that is using a certificate for communication (the default one). On the CLI the cURL commands works totally fine...
I'm trying to use FOSElasticaBundle on my symfony 4 project and I have some problems. I have an entity, "Users", with the next annotation in the property "segments": ``` *...
Hey ! I have this error "Param pipeline does not exist" (from vendor/ruflin/elastica/src/Param.php:110) when I try to use findHybrid function. Do you know where this error can come from? I...
Hi, The documentations says : "In all cases, the callback should return a true or false, with true indicating it will be indexed, and a false indicating the object should...