Added a new criterion for solr with the following features :
- search and boost multiple fields
- boost depending on publish date (Publish date field)
- boost on phrases matches
- boost on exact matches (Exact matches boosting)
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
]
);