Class ParentChildrenBlockJoinQuery

java.lang.Object
org.apache.lucene.search.Query
org.apache.lucene.search.join.ParentChildrenBlockJoinQuery

public class ParentChildrenBlockJoinQuery extends Query
A query that returns all the matching child documents for a specific parent document indexed together in the same block. The provided child query determines which matching child doc is being returned.
WARNING: This API is experimental and might change in incompatible ways in the next release.
  • Constructor Details

    • ParentChildrenBlockJoinQuery

      public ParentChildrenBlockJoinQuery(BitSetProducer parentFilter, Query childQuery, int parentDocId)
      Creates a ParentChildrenBlockJoinQuery instance
      Parameters:
      parentFilter - A filter identifying parent documents.
      childQuery - A child query that determines which child docs are matching
      parentDocId - The top level doc id of that parent to return children documents for
  • Method Details