FOSElasticaBundle icon indicating copy to clipboard operation
FOSElasticaBundle copied to clipboard

Elasticsearch PHP integration for your Symfony project using Elastica.

Results 147 FOSElasticaBundle issues
Sort by recently updated
recently updated
newest added

In my project in Symfony 6, I have had this deprecation for some time: > The "FOS\ElasticaBundle\Message\Handler\AsyncPersistPageHandler" class implements "Symfony\Component\Messenger\Handler\MessageHandlerInterface" that is deprecated since Symfony 6.2, use the {@see AsMessageHandler}...

To be consistent with the JMS Serializer configuration

[Symfony 7 released](https://symfony.com/blog/prepare-yourself-for-symfony-6-4-and-symfony-7-0). Please, bump `symfony/console`, `symfony/framework-bundle` and `symfony/dependency-injection` component to the latest version.

How can i specify the field type when dynamically updating an Elasticsearch index using the PostTransformEvent in Symfony with ElasticaBundle? $document = $event->getDocument(); $object = $event->getObject(); $document->set('images', $value); The type...

Since 6.3.0 version of FOSElasticaBundle because of the deprecation of `PostAsyncInsertObjectsEvent` the command `fos:elastica:populate` stop working properly: - No error messages are shown - No Progressbar is shown That's because...

It's trying to delete the index via its alias which yields ``` The provided expression [alias_name] matches an alias, specify the corresponding concrete indices instead. ``` Should resolve the index...

Package Version : v6.2.0 PHP version : 8.2.5 doctrine/dbal version : 3.6.2 Symfony version : 5.4.22 Elastica conf : ``` fos_elastica: clients: default: { host: "%env(ELASTICSEARCH_HOST)%", port: '%env(ELASTICSEARCH_PORT)%' } indexes:...

In current (6.3.1) version of FOSElasticaBundle, the ORMAdapter creates a $pager using the following code: `$pager = new PagerfantaPager(new Pagerfanta(new QueryAdapter($qb)));` Not using extra parameters of QueryAdapter constructor not allows...