Re: How to inject custom response data after results have been sorted

2015-01-24 Thread Joel Bernstein
Another thing to consider... If you only need custom stats for the current result page then there is no need to keep stats for the full result set. In this case you could perform your custom collapse and generate the stats just for the current page. The ExpandComponent could be altered to do that b

Re: How to inject custom response data after results have been sorted

2015-01-23 Thread tedsolr
Thank you so much for your responses Hoss and Shalin. I gather the DocTransfomer allows manipulations to the doc list returned in the results. That is very cool. So the transformer has access to the Solr Request. I haven't seen the hook yet, but I believe you - I'll have to keep looking. It would c

Re: How to inject custom response data after results have been sorted

2015-01-23 Thread Chris Hostetter
: If you just need to transform an individual result, that can be done by a : custom DocTransformer. But from your email, I think you need a custom : SearchComponent. if your PostFilter has already collected all of the info you need, and you now just wnat to return a subset of that information t

Re: How to inject custom response data after results have been sorted

2015-01-23 Thread Shalin Shekhar Mangar
If you just need to transform an individual result, that can be done by a custom DocTransformer. But from your email, I think you need a custom SearchComponent. On Fri, Jan 23, 2015 at 6:23 PM, tedsolr wrote: > Hello! With the help of this community I have solved 2 problems on my way > to > crea