Re: Dynamic facets during runtime

2017-05-12 Thread Erik Hatcher
Use "appends" instead of "defaults". > On May 11, 2017, at 23:23, Jeyaprakash Singarayar > wrote: > > Hi, > > Our application has a facet select admin screen UI that would allow the > users to add/update/delete the facets that has to be returned from Solr. > > Right now we have the facet fie

Re: Dynamic Facets

2011-07-05 Thread Way Cool
Thanks Erik and Darren. A pre-faceting component (post querying) will be ideal as though maybe a little performance penalty there. :-) I will try to implement one if no one has done so. Darren, I did look at the taxonomy faceting thread. My main concern is that I want to have dynamic facets to be

Re: Dynamic Facets

2011-07-05 Thread darren
You can issue a new facet search as you drill down from your UI. You have to specify the fields you want to facet on and they can be dynamic. Take a look at recent threads here on taxonomy faceting for help. Also, look here[1] [1] http://wiki.apache.org/solr/SimpleFacetParameters On Tue, 5 Jul

Re: Dynamic Facets

2011-07-05 Thread Erik Hatcher
YH - One technique (that the Smithsonian employs, I believe) is a technique to index the field names for the attributes into a separate field, facet on that first, and then facet on the fields you'd like from that response in a second request to Solr. There's a basic hack here so the indexing

Re: Dynamic facets?

2009-12-28 Thread Shalin Shekhar Mangar
On Mon, Dec 28, 2009 at 7:55 PM, Darren Govoni wrote: > Hi, > I was wondering if there is a way to retrieve the facets from a query > based on their mincount without specifying facet.field? > > I submit a query and want to retrieve all the faceted fields with > mincounts > 2, but don't know what