You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ro...@apache.org on 2020/02/24 10:29:50 UTC

[lucene-solr] branch master updated (57c7139 -> 663611c)

This is an automated email from the ASF dual-hosted git repository.

romseygeek pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git.


    from 57c7139  SOLR-14114: Add WARN to Solr log that embedded ZK is not supported in production (#1273)
     add 663611c  [SOLR-12238] Synonym Queries boost (#357)

No new revisions were added by this update.

Summary of changes:
 .../DelimitedBoostTokenFilter.java}                |  39 ++--
 .../DelimitedBoostTokenFilterFactory.java}         |  38 ++--
 .../analysis/{bn => boost}/package-info.java       |   4 +-
 ....apache.lucene.analysis.util.TokenFilterFactory |   1 +
 .../boost/DelimitedBoostTokenFilterTest.java       |  85 ++++++++
 .../org/apache/lucene/search/BoostAttribute.java   |   1 +
 .../java/org/apache/lucene/util/QueryBuilder.java  | 116 ++++++++---
 .../org/apache/lucene/util/TestQueryBuilder.java   |  50 +++++
 .../complexPhrase/ComplexPhraseQueryParser.java    |   4 +-
 .../apache/solr/parser/SolrQueryParserBase.java    |  28 ++-
 .../test-files/solr/collection1/conf/schema12.xml  |  38 ++++
 .../test-files/solr/collection1/conf/synonyms.txt  |  16 +-
 .../TestManagedSynonymGraphFilterFactory.java      |  76 +++++++
 .../apache/solr/search/TestSolrQueryParser.java    | 219 ++++++++++++++++++++-
 solr/solr-ref-guide/src/filter-descriptions.adoc   |  99 ++++++++++
 15 files changed, 731 insertions(+), 83 deletions(-)
 copy lucene/analysis/common/src/java/org/apache/lucene/analysis/{payloads/DelimitedPayloadTokenFilter.java => boost/DelimitedBoostTokenFilter.java} (63%)
 copy lucene/analysis/common/src/java/org/apache/lucene/analysis/{miscellaneous/DelimitedTermFrequencyTokenFilterFactory.java => boost/DelimitedBoostTokenFilterFactory.java} (60%)
 copy lucene/analysis/common/src/java/org/apache/lucene/analysis/{bn => boost}/package-info.java (87%)
 create mode 100644 lucene/analysis/common/src/test/org/apache/lucene/analysis/boost/DelimitedBoostTokenFilterTest.java