cammiemw commented on a change in pull request #2097: URL: https://github.com/apache/lucene-solr/pull/2097#discussion_r532905011
########## File path: lucene/core/src/java/org/apache/lucene/search/IndriAndQuery.java ########## @@ -0,0 +1,22 @@ +package org.apache.lucene.search; + +import java.io.IOException; +import java.util.List; + +/** A Query that matches documents matching combinations of + * {@link TermQuery}s or other IndriAndQuerys. + */ +public class IndriAndQuery extends IndriQuery { Review comment: I agree the naming is confusing. I have taken the naming schema as well as the logic from the original Indri search engine implementation. The issue with renaming it is that there is already IndriOrQuery, which I have created and hope to be able to add at a future time. I will continue to think about whether there is a better name for the IndriAndQuery though. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org For additional commands, e-mail: issues-h...@lucene.apache.org