Re: edismax: date range facet with queries containing OR clause

2013-06-23 Thread Walter Underwood
> be impacted significantly. > > -- Jack Krupansky > > -Original Message- From: Sourajit Basak > Sent: Sunday, June 23, 2013 10:23 AM > To: solr-user@lucene.apache.org > Subject: Re: edismax: date range facet with queries containing OR clause > > Thats exactl

Re: edismax: date range facet with queries containing OR clause

2013-06-23 Thread Sourajit Basak
ate_field > > (See the example in the book! Or on the wiki.) > > > -- Jack Krupansky > > -Original Message- From: Sourajit Basak > Sent: Sunday, June 23, 2013 10:29 AM > To: solr-user@lucene.apache.org > Subject: Re: edismax: date range facet with queries cont

Re: edismax: date range facet with queries containing OR clause

2013-06-23 Thread Jack Krupansky
23, 2013 8:52 AM To: solr-user@lucene.apache.org Subject: edismax: date range facet with queries containing OR clause When we have a user query like keyword1 OR keyword2, we can find the count of each keyword using the following params. q= keyword1 OR keyword2 facet.query=keyword1 facet.query

Re: edismax: date range facet with queries containing OR clause

2013-06-23 Thread Jack Krupansky
@lucene.apache.org Subject: Re: edismax: date range facet with queries containing OR clause Is there a way to write this query using pivots. Will try out and post here. Appreciate if someone points to a way. On Sun, Jun 23, 2013 at 7:53 PM, Sourajit Basak wrote: Thats exactly how we are

Re: edismax: date range facet with queries containing OR clause

2013-06-23 Thread Sourajit Basak
> >> q= keyword2 >> facet.range=date_field_name >> ... >> facet=true >> >> Where the "..." means fill in the additional facet.range.xxx parameters >> (start, end, gap, etc.) >> >> -- Jack Krupansky >> >> -Original Mes

Re: edismax: date range facet with queries containing OR clause

2013-06-23 Thread Sourajit Basak
nal Message- From: Sourajit Basak > Sent: Sunday, June 23, 2013 8:52 AM > To: solr-user@lucene.apache.org > Subject: edismax: date range facet with queries containing OR clause > > > When we have a user query like keyword1 OR keyword2, we can find the count > of e

Re: edismax: date range facet with queries containing OR clause

2013-06-23 Thread Jack Krupansky
al Message- From: Sourajit Basak Sent: Sunday, June 23, 2013 8:52 AM To: solr-user@lucene.apache.org Subject: edismax: date range facet with queries containing OR clause When we have a user query like keyword1 OR keyword2, we can find the count of each keyword using the following params. q= k

edismax: date range facet with queries containing OR clause

2013-06-23 Thread Sourajit Basak
When we have a user query like keyword1 OR keyword2, we can find the count of each keyword using the following params. q= keyword1 OR keyword2 facet.query=keyword1 facet.query=keyword2 facet=true How do we do a date range facet that will return results for each keyword faceted by date range ?