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
Constructors -
Method Summary
Modifier and TypeMethodDescriptionList<org.apache.lucene.search.Query>Returns queries associated with the rescorerintSize of the window to rescore.booleanisRescored(int docId)rescorer()The rescorer to actually apply.voidsetRescoredDocs(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
-