Class LowercasingSearcher
- java.lang.Object
-
- com.yahoo.component.AbstractComponent
-
- com.yahoo.component.chain.ChainedComponent
-
- com.yahoo.processing.Processor
-
- com.yahoo.search.Searcher
-
- com.yahoo.search.querytransform.LowercasingSearcher
-
- All Implemented Interfaces:
com.yahoo.component.Component
,com.yahoo.component.Deconstructable
,java.lang.Comparable<com.yahoo.component.Component>
- Direct Known Subclasses:
AllLowercasingSearcher
,VespaLowercasingSearcher
public abstract class LowercasingSearcher extends Searcher
Traverse a query tree and lowercase terms based on decision made in subclasses.- Author:
- Steinar Knutsen
-
-
Constructor Summary
Constructors Constructor Description LowercasingSearcher()
LowercasingSearcher(LowercasingConfig cfg)
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description Result
search(Query query, Execution execution)
Override this to implement your searcher.abstract boolean
shouldLowercase(WordItem word, IndexFacts.Session indexFacts)
Override this to control whether a given term should be lowercased.abstract boolean
shouldLowercase(java.lang.String commonPath, WordItem word, IndexFacts.Session indexFacts)
-
Methods inherited from class com.yahoo.search.Searcher
ensureFilled, fill, getLogger, process, toString
-
Methods inherited from class com.yahoo.component.chain.ChainedComponent
getAnnotatedDependencies, getDefaultAnnotatedDependencies, getDependencies, initDependencies
-
-
-
-
Constructor Detail
-
LowercasingSearcher
public LowercasingSearcher()
-
LowercasingSearcher
public LowercasingSearcher(LowercasingConfig cfg)
-
-
Method Detail
-
search
public Result search(Query query, Execution execution)
Description copied from class:Searcher
Override this to implement your searcher.Searcher implementation subclasses will, depending on their type of logic, do one of the following:
- Query processors: Access the query, then call execution.search and return the result
- Result processors: Call execution.search to get the result, access it and return
- Sources (which produces results): Create a result, add the desired hits and return it.
- Federators (which forwards the search to multiple subchains): Call search on the desired subchains in parallel and get the results. Combine the results to one and return it.
- Workflows: Call execution.search as many times as desired, using different queries. Eventually return a result.
Hits come in two kinds - concrete hits are actual content of the kind requested by the user, meta hits are hits which provides information about the collection of hits, on the query, the service and so on.
The query specifies a window into a larger result list that must be returned from the searcher through hits and offset; Searchers which returns list of hits in the top level in the result must return at least hits number of hits (or if impossible; all that are available), starting at the given offset. In addition, searchers are allowed to return any number of meta hits (although this number is expected to be low). For hits contained in nested hit groups, the concept of a window defined by hits and offset is not well defined and does not apply.
Error handling in searchers:
- Unexpected events: Throw any RuntimeException. This query will fail with the exception message, and the error will be logged
- Expected events: Create (new Result(Query, ErrorMessage) or add result.setErrorIfNoOtherErrors(ErrorMessage) an error message to the Result.
- Recoverable user errors: Add a FeedbackHit explaining the condition and how to correct it.
-
shouldLowercase
public abstract boolean shouldLowercase(WordItem word, IndexFacts.Session indexFacts)
Override this to control whether a given term should be lowercased.- Parameters:
word
- a WordItem or subclass thereof which is a candidate for lowercasing- Returns:
- whether to convert the term to lower case
-
shouldLowercase
public abstract boolean shouldLowercase(java.lang.String commonPath, WordItem word, IndexFacts.Session indexFacts)
-
-