Thore Sünert

Results 25 comments of Thore Sünert

This should be supported now. Support for order by and where clauses ist merged.

let me add an example for usage of `laravel/horizon`: ```php //config/scout.php 'queue' => [ 'queue' => 'search' ], ``` ```php //config/horizon.php 'environments' => [ 'production' => [ 'supervisor-1' => [...

@elephantux https://github.com/teamtnt/laravel-scout-tntsearch-driver/issues/61#issuecomment-401409268

@imonoid did you try to overwrite the values at runtime? https://laravel.com/docs/5.6/configuration#accessing-configuration-values

> > @imonoid did you try to overwrite the values at runtime? > > https://laravel.com/docs/5.6/configuration#accessing-configuration-values > > It's a really hackish solution though. It would be nice if this would...

be explicit about "fails to be generated"? We are using it with queues in a production environment without a problem in combination with laravel/horizon

@reminisc3 your assumption is correct. that sounds like a misconfiguration. maybe this helps: https://github.com/teamtnt/laravel-scout-tntsearch-driver/issues/61#issuecomment-401409268 otherwise are you able to provide more information about your setup?

I can confirm this behaviour. Anyone working on this "bug"?

I don't know how to contribute the right way. I there is any advice share it with me plz. For now i will paste them here: ``` /** * @test...

A quick and Dirty Solution: Within **OnFLush** in **SortableListener** around Line 80: ``` $orderedObjects = []; foreach ($ea->getScheduledObjectInsertions($uow) as $object) { $meta = $om->getClassMetadata(get_class($object)); if ($config = $this->getConfiguration($om, $meta->name)) {...