Skip to content

Latest commit

 

History

History
29 lines (23 loc) · 691 Bytes

fulltext_criterion.md

File metadata and controls

29 lines (23 loc) · 691 Bytes

Novactive eZ Solr Search Extra Bundle

FullText Criterion

Added a new criterion for solr with the following features :

Allow per field query boost

Example

$query = new Query();
...
$query->query = new Novactive\EzSolrSearchExtra\Query\Content\Criterion\MultipleFieldsFullText(
    'search text',
    [
        'metaBoost' => [
            'title' => '3',
            'intro' => '2'
        ],
        'boostPublishDate' => true
    ]
);