Package org.elasticsearch.search.rescore
Class RescoreContext
java.lang.Object
org.elasticsearch.search.rescore.RescoreContext
- Direct Known Subclasses:
QueryRescorer.QueryRescoreContext
Context available to the rescore while it is running. Rescore
implementations should extend this with any additional resources that
they will need while rescoring.
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionList<org.apache.lucene.search.Query>
Returns queries associated with the rescorerint
Size of the window to rescore.boolean
isRescored(int docId)
rescorer()
The rescorer to actually apply.void
setRescoredDocs(Set<Integer> docIds)
-
Constructor Details
-
RescoreContext
Build the context.- Parameters:
rescorer
- the rescorer actually performing the rescore.
-
-
Method Details
-
rescorer
The rescorer to actually apply. -
getWindowSize
public int getWindowSize()Size of the window to rescore. -
setRescoredDocs
-
isRescored
public boolean isRescored(int docId) -
getRescoredDocs
-
getQueries
Returns queries associated with the rescorer
-