-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Move anonymous Weight implementation in PointRangeQuery to named class #13711
base: main
Are you sure you want to change the base?
Conversation
Signed-off-by: Ankit Jain <[email protected]>
I see from the linked issue that you would like to extend |
Signed-off-by: Ankit Jain <[email protected]>
Signed-off-by: Ankit Jain <[email protected]>
@jpountz - Thanks for your feedback. While I agree with using composition rather than extension for |
Sorry, I don't think we should make Lucene's I looked up the OpenSearch issue, if I understand correctly, the problem you're trying to solve is that it's wasteful for |
This PR has not had activity in the past 2 weeks, labeling it as stale. If the PR is waiting for review, notify the [email protected] list. Thank you for your contribution! |
Description
Moves the anonymous
Weight
implementation inPointRangeQuery#createWeight
to named class for better extensibility and resusability.