Re: Facets that match exactly a filter query..

2007-07-13 Thread Ryan McKinley
Matthew Runo wrote: Wow, thank you for that response. Yes, that is correct, I'd like only to show filters that will actually change the results when clicked on. What do you mean, compare the counts? In solrj, we have a 'getLimitingFacets' that strips out anything with the same number of fac

Re: Facets that match exactly a filter query..

2007-07-13 Thread Matthew Runo
Awesome, thank you! I've implemented this check in my solr app, and it's working beautifully. Thank you again! I've been consistently impressed with the level of support this community gives each other. This email list is better than most paid support plans. +---

Re: Facets that match exactly a filter query..

2007-07-13 Thread Chris Hostetter
: What do you mean, compare the counts? : : Do you mean compare the number of results for the facet to the total : number of results found, and if they're the same, don't show it? bingo ... if you know that the current request resulted in 1,278 documents, and you have a facet.field called "style"

Re: Facets that match exactly a filter query..

2007-07-13 Thread Matthew Runo
Wow, thank you for that response. Yes, that is correct, I'd like only to show filters that will actually change the results when clicked on. What do you mean, compare the counts? Do you mean compare the number of results for the facet to the total number of results found, and if they're the

Re: Facets that match exactly a filter query..

2007-07-13 Thread Chris Hostetter
: The issue here is that, even though I've already clicked on the : "General Sport Eyewear" facet, I still get that as an option in the : results. It seems that SOLR might be able to exclude this from the : facets on the basis of an exact match to the filter query I'm : running.. but I'm not sure.