Github user moshebla commented on a diff in the pull request:

    https://github.com/apache/lucene-solr/pull/416#discussion_r204227753
  
    --- Diff: 
solr/core/src/java/org/apache/solr/response/transform/DeeplyNestedChildDocTransformerFactory.java
 ---
    @@ -0,0 +1,367 @@
    +/*
    + * Licensed to the Apache Software Foundation (ASF) under one or more
    + * contributor license agreements.  See the NOTICE file distributed with
    + * this work for additional information regarding copyright ownership.
    + * The ASF licenses this file to You under the Apache License, Version 2.0
    + * (the "License"); you may not use this file except in compliance with
    + * the License.  You may obtain a copy of the License at
    + *
    + *     http://www.apache.org/licenses/LICENSE-2.0
    + *
    + * Unless required by applicable law or agreed to in writing, software
    + * distributed under the License is distributed on an "AS IS" BASIS,
    + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    + * See the License for the specific language governing permissions and
    + * limitations under the License.
    + */
    +package org.apache.solr.response.transform;
    +
    +import java.io.IOException;
    +import java.util.ArrayList;
    +import java.util.List;
    +import java.util.Set;
    +import java.util.regex.Pattern;
    +
    +import org.apache.lucene.document.Document;
    +import org.apache.lucene.index.DocValues;
    +import org.apache.lucene.index.ReaderUtil;
    +import org.apache.lucene.index.SortedDocValues;
    +import org.apache.lucene.search.Query;
    +import org.apache.lucene.search.join.BitSetProducer;
    +import org.apache.lucene.search.join.QueryBitSetProducer;
    +import org.apache.lucene.search.join.ToChildBlockJoinQuery;
    +import org.apache.solr.common.SolrDocument;
    +import org.apache.solr.common.SolrException;
    +import org.apache.solr.common.SolrException.ErrorCode;
    +import org.apache.solr.common.params.SolrParams;
    +import org.apache.solr.common.util.StrUtils;
    +import org.apache.solr.request.SolrQueryRequest;
    +import org.apache.solr.response.DocsStreamer;
    +import org.apache.solr.schema.FieldType;
    +import org.apache.solr.schema.SchemaField;
    +import org.apache.solr.search.DocIterator;
    +import org.apache.solr.search.DocList;
    +import org.apache.solr.search.QParser;
    +import org.apache.solr.search.SolrDocumentFetcher;
    +import org.apache.solr.search.SolrReturnFields;
    +import org.apache.solr.search.SyntaxError;
    +
    +import static 
org.apache.solr.response.transform.DeeplyNestedChildDocTransformerFactory.PATH_SEP_CHAR;
    +import static org.apache.solr.schema.IndexSchema.NEST_PATH_FIELD_NAME;
    +import static org.apache.solr.schema.IndexSchema.ROOT_FIELD_NAME;
    +
    +/**
    + *
    + * @since solr 4.9
    + *
    + * This transformer returns all descendants of each parent document in a 
flat list nested inside the parent document.
    + *
    + *
    + * The "parentFilter" parameter is mandatory.
    + * Optionally you can provide a "childFilter" param to filter out which 
child documents should be returned and a
    + * "limit" param which provides an option to specify the number of child 
documents
    + * to be returned per parent document. By default it's set to 10.
    + *
    + * Examples -
    + * [child parentFilter="fieldName:fieldValue"]
    + * [child parentFilter="fieldName:fieldValue" 
childFilter="fieldName:fieldValue"]
    + * [child parentFilter="fieldName:fieldValue" 
childFilter="fieldName:fieldValue" limit=20]
    + */
    +public class DeeplyNestedChildDocTransformerFactory extends 
TransformerFactory {
    --- End diff --
    
    Sure thing, I will merge the two transformers


---

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to