Re: Regarding Facet Date query using SolrJ -- Not getting any examples to start with.

2010-06-02 Thread Ninad Raut
Thanks Greet-Jan. Din't know about this trick. [?] On Wed, Jun 2, 2010 at 5:39 PM, Geert-Jan Brits wrote: > Hi Ninad, > > SolrQuery q = new SolrQuery(); > q.setQuery("*:*"); > q.setFacet(true); > q.set("facet.data", "pub"); > q.set("facet.date.start", "2000-01-01T00:00:00Z") > ... etc. > > basic

Re: Regarding Facet Date query using SolrJ -- Not getting any examples to start with.

2010-06-02 Thread Geert-Jan Brits
Hi Ninad, SolrQuery q = new SolrQuery(); q.setQuery("*:*"); q.setFacet(true); q.set("facet.data", "pub"); q.set("facet.date.start", "2000-01-01T00:00:00Z") ... etc. basically you can completely build your entire query with the 'raw' set (and add) methods. The specific methods are just helpers. S

Regarding Facet Date query using SolrJ -- Not getting any examples to start with.

2010-06-02 Thread Ninad Raut
Hi, I want to hit the query given below : ?q=*:*&facet=true&facet.date=pub&facet.date.start=2000-01-01T00:00:00Z&facet.date.end=2010-01-01T00:00:00Z&facet.date.gap=%2B1YEAR using SolrJ. I am browsing the net but not getting any clues about how should I approach it. How can SolJ API be used to c