MatchAgainstBundle
Based on https://gist.github.com/ZeBigDuck/1234419, (*1)
Installing
composer require ciricihq/match-against-bundle
Usage
You must load the bundle provided config.yml in order to have the
MATCH_AGAINST
MySQL sentence, (*2)
imports:
- { resource: ../../src/Cirici/MatchAgainstBundle/Resources/config/config.yml }
Make a query:, (*3)
$qbuilder
->select('sti.foreignId')
->from('Cirici\MatchAgainstBundle\Entity\SearchTextIndex', 'sti')
->where('sti.model = :entityClass')
->andWhere('sti.field = :fieldName')
// ->andWhere("MATCH_AGAINST(sti.content, :text 'IN NATURAL LANGUAGE MODE') > :score")
->andWhere("MATCH_AGAINST(sti.content, :text 'IN BOOLEAN MODE') > :score")
->setParameter('entityClass', $entity_class)
->setParameter('fieldName', $field_name)
->setParameter('text', $text)
->setParameter('score', $score)
;
License
Licensed under the GNU GPL 2.0 license. Check out the LICENSE
file for more
details., (*4)
Copyright 2015 © Cirici New Media, (*5)