Boon Low created LUCENE-6149:
--------------------------------
Summary: Infix suggesters' highlighting, allTermsRequired options
are hardwired and not configurable for non-contextual lookup
Key: LUCENE-6149
URL: https://issues.apache.org/jira/browse/LUCENE-6149
Project: Lucene - Core
Issue Type: Improvement
Components: modules/other
Affects Versions: 4.10.2, 4.10.1, 4.9, 4.10.3
Reporter: Boon Low
Priority: Minor
Fix For: Trunk, 5.x
Highlighting and allTermsRequired are hardwired in _AnalyzingInfixSuggester_
for non-contextual lookup (via _Lookup_) see *true*, *true* below:
{code:title=AnalyzingInfixSuggester.java (extends Lookup.java) }
public List<LookupResult> lookup(CharSequence key, Set<BytesRef> contexts,
boolean onlyMorePopular, int num) throws IOException {
return lookup(key, contexts, num, true, true);
}
/** Lookup, without any context. */
public List<LookupResult> lookup(CharSequence key, int num, boolean
allTermsRequired, boolean doHighlight) throws IOException {
return lookup(key, null, num, allTermsRequired, doHighlight);
}
{code}
{code:title=Lookup.java}
public List<LookupResult> lookup(CharSequence key, boolean onlyMorePopular, int
num) throws IOException {
return lookup(key, null, onlyMorePopular, num);
}
{code}
The above means the majority of current infix suggester lookup always returns
highlighted results with allTermsRequired in effect, despite the options and
improvement of LUCENE-6050, made to incorporate Boolean lookup clauses
(MUST/SHOULD). This shortcoming has been reported in SOLR-6648.
The suggesters (AnalyzingInfixSuggester, BlendedInfixSuggester) should provide
proper default settings for highlighting and "allTermsRequired", so that these
can be specified in constructors (+ in Solr factories and thus configurable via
solrconfig.xml).
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]