Re: Create custom facets after building index

2008-10-21 Thread Vincent Pérès
Hello ! Thank you it is working. I've done a query, and my facet query is : "facet_queries":{ "published_year_facet:[1999 TO 2005]":95, "rating_facet:[3 TO 3.99]":25, "rating_facet:[1 TO 1.99]":1}, Is it possible to 'group' kind of queries (published together, rating tog

Re: Create custom facets after building index

2008-10-21 Thread Shalin Shekhar Mangar
You should use facet.query which gives the number of documents matching the query. For example: facet.query=rating:[0 TO 0.99]&facet.query=rating:[1 TO 1.99] etc. http://wiki.apache.org/solr/SimpleFacetParameters On Tue, Oct 21, 2008 at 3:12 PM, Vincent Pérès <[EMAIL PROTECTED]>wrote: > > Hello