Skip to content

Commit

Permalink
Potentiele fix voor langzame zoeken in forumposts
Browse files Browse the repository at this point in the history
Voeg de match against toe aan de where clause, zodat er alleen een score wordt geselecteerd voor relevante resultaten
  • Loading branch information
qurben committed Oct 29, 2023
1 parent 7bfc21f commit 736c04f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/repository/forum/ForumPostsRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ public function zoeken(ForumZoeken $forumZoeken, $alleen_eerste_post)
$results = $this->createQueryBuilder('fp')
->addSelect('MATCH(fp.tekst) AGAINST (:query) AS score')
->where(
'fp.wacht_goedkeuring = false and fp.verwijderd = false and fp.laatst_gewijzigd >= :van and fp.laatst_gewijzigd <= :tot'
'fp.wacht_goedkeuring = false and fp.verwijderd = false and fp.laatst_gewijzigd >= :van and fp.laatst_gewijzigd <= :tot and MATCH(fp.tekst) AGAINST (:query)'
)
->setParameter('query', $forumZoeken->zoekterm)
->setParameter('van', $forumZoeken->van)
Expand Down

0 comments on commit 736c04f

Please sign in to comment.