Re: How do I get faceting to work with Solr JOINs

2014-07-23 Thread Vinay B,
Thank You, Umesh ! That's a neat approach. Reading through your post, we decided to tweak our indexing strategy a bit, basically an inversion. We moved all our facetable (and frequently updated) fields to the main doc and the text and other static content fields to the sub doc (co-related via a pa

Re: How do I get faceting to work with Solr JOINs

2014-07-17 Thread Umesh Prasad
Hi Vinay, You can customize the FacetsComponent. Basically FacetComponent uses SimpleFacets to compute the facet count. It passes matched docset present in responsebuilder to SimpleFacets's constructor. 1. Build a mapping between parent space and auxiliary document space in (say an int array) a

How do I get faceting to work with Solr JOINs

2014-07-17 Thread Vinay B,
Some Background info : In our application, we have a requirement to update large number of records often. I investigated solr child documents but it requires updating both the child and the parent document . Therefore, I'm investigating adding frequently updated information in an "auxillary docume