FOSElasticaBundle
FOSElasticaBundle copied to clipboard
Elasticsearch PHP integration for your Symfony project using Elastica.
I searched and found a few people asking about this but no one posted an actual working solution. It was suggested to overwrite the Http.php class in Elastica but i...
I am searching for a way to use the Scroll API with the KNP paginator. Now I get the following exception when going to 1918 of my results. I could...
Hey all It's been a while since I've used FEB and I'm due to change my client's indexer to using the bundle to ingest a collection of (mostly) text files...
Hi, I'm trying to get data from ElasticSearch by using a custom repository but when I'm trying to prepare repository, I'm getting error: ``` Call to a member function getRepository()...
Hi everyone, I'm stuck with this for a few days, I want to get all related data to a random query, and for each registry I need to show its's...
I'm trying to connect to a mongodb in the configuration of elastica as a driver. ```yaml persistence: driver: mongodb model: Some\Model ``` Mongodb is already successfully configured and used with...
The documentation on how to search assumes the container is available, which is not longer very common in Symfony 5 apps. $finder = $this->container->get('fos_elastica.finder.app.user'); https://github.com/FriendsOfSymfony/FOSElasticaBundle/blob/master/doc/usage.md If these were services were...
Hello, I recently found an issue with paginated search in this bundle (5.2.x) When executing this Query ``` $query = new Prefix(['value' => $queryParam]); $finder = $this->finder->findPaginated($query); $finder->setCurrentPage($page); $finder->setMaxPerPage($limit); $result...
Hello, Is it possible to search without hydrating ( Transforming ) the results with a finder? In my case, I would like to only get the ids ( Avoid querying...
I am using the 5.2 version. Here is my config: ``` fos_elastica: serializer: ~ clients: default: { url: '%env(ELASTICSEARCH_URL)%' } indexes: app_entry: types: entry: persistence: # the driver can be...