Re: Collapse and Expand behaviour on result with 1 document.

2015-04-07 Thread Derek Poh
Hi Joel Is the number of documents info available when using collapse and expand parameters? I can't seem to find it in the return xml. I know the numFound in the the main result set (result maxScore=6.470696 name=response numFound=27 start=0) refer to the number of collapse groups. I

Re: Collapse and Expand behaviour on result with 1 document.

2015-04-07 Thread Joel Bernstein
I believe currently issuing another query will be necessary to get the count of the expanded result set. I think it does make sense to include this information as part of the ExpandComponent output. So feel free to create a jira ticket for this and we should be able to get this into a future

Re: Collapse and Expand behaviour on result with 1 document.

2015-04-01 Thread Derek Poh
Hi Joel Correct me if my understanding is wrong. Using supplier id as the field to collapse on. - If thecollapse group heads inthe main result set has only 1document in each group, the expanded section will be empty since there are no documents to expandfor each collapse group. - To render

Re: Collapse and Expand behaviour on result with 1 document.

2015-04-01 Thread Joel Bernstein
Exactly correct. Joel Bernstein http://joelsolr.blogspot.com/ On Wed, Apr 1, 2015 at 5:44 AM, Derek Poh d...@globalsources.com wrote: Hi Joel Correct me if my understanding is wrong. Using supplier id as the field to collapse on. - If thecollapse group heads inthe main result set has only

Re: Collapse and Expand behaviour on result with 1 document.

2015-03-31 Thread Derek Poh
If I want to group the results (by a certain field) even if there is only 1 document, I should use the group parameter instead? The requirement is to group the result of product documents by their supplier id. group=truegroup.field=P_SupplierIdgroup.limit=5 Is it true that the performance of

Re: Collapse and Expand behaviour on result with 1 document.

2015-03-31 Thread Joel Bernstein
You should be able to use collapse/expand with one result. Does the document in the main result set have group members that aren't being expanded? Joel Bernstein http://joelsolr.blogspot.com/ On Tue, Mar 31, 2015 at 2:00 AM, Derek Poh d...@globalsources.com wrote: If I want to group the

Re: Collapse and Expand behaviour on result with 1 document.

2015-03-31 Thread Joel Bernstein
The way that collapse/expand is designed to be used is as follows: The main result set will contain the collapsed group heads. The expanded section will contain the expanded groups for the page of results. To render the page you iterate the main result set. For each document check to see if

Re: Collapse and Expand behaviour on result with 1 document.

2015-03-31 Thread Derek Poh
There is only 1 document in the main result set.The expanded section is empty. On 3/31/2015 7:37 PM, Joel Bernstein wrote: You should be able to use collapse/expand with one result. Does the document in the main result set have group members that aren't being expanded? Joel Bernstein

Collapse and Expand behaviour on result with 1 document.

2015-03-30 Thread Derek Poh
Hi I have a query which return 1 document. When I add the collapse and expand parameters to it, expand=trueexpand.rows=5fq={!collapse%20field=P_SupplierId}, the expanded section is empty (lst name=expanded/). Is this the behaviour of collapse and expand parameters on result which contain

Re: Collapse and Expand behaviour on result with 1 document.

2015-03-30 Thread Joel Bernstein
The expanded section will only include groups that have expanded documents. So, if the document that in the main result set has no documents to expand, then this is working as expected. Joel Bernstein http://joelsolr.blogspot.com/ On Mon, Mar 30, 2015 at 8:43 PM, Derek Poh