Skip to content

Releases: kaliop-uk/ezfindsearchenginebundle

1.4.0

18 Dec 19:16
Compare
Choose a tag to compare
  • New: a new Query Criterion, EzFindText, can now be used to fully emulated legacy 'ezfind searches', i.e. do a full-text search across all indexed content fields, instead of matching the ezf_df_text field as is done when using a FullText criterion. This can greatly improve relevancy sorting.

    Ex:

      use Kaliop\EzFindSearchEngineBundle\API\Repository\Values\Content\Query\Criterion\EzFindText;
      use Kaliop\EzFindSearchEngineBundle\API\Repository\Values\Content\Query\SortClause\Score; 
      ...
      $query->query = new EzFindText('hello world');
      $query->sortClauses = [new Score('descending')];
    

    NB the EzFindText criterion should be used as unique member of your query's query member.
    When using it, use the query's filter member to add any other criteria.

1.3.0

18 Dec 19:15
Compare
Choose a tag to compare
  • Improved: made it easier to change the default values for QueryHandler, EnableElevation and ForceElevation by subclassing the SearchService

  • Improved: the FullText Criterion will now treat text surrounded by double quotes as meaning 'exact match', while still doing its magic mangling for text beginning or ending with a wildcard character

  • Improved: declare compatibility with Kaliop Migrations bundle v5

Throw exceptions on SOLR errors

24 May 18:07
Compare
Choose a tag to compare
1.2.0

cleanup exception generation

Add support for Symfony profiler

17 May 10:41
Compare
Choose a tag to compare

Allows to troubleshoot perf problems by giving you total time spent talking to solr and number of requests sent

Better Late Than Never

11 May 12:57
Compare
Choose a tag to compare

All info for current features in the Readme.