Re: Find docs close to a date

2007-04-05 Thread nick19701
is one. I haven't written any java code yet. But maybe someday I will try for this one. -- View this message in context: http://www.nabble.com/Find-docs-close-to-a-date-tf3507295.html#a9858867 Sent from the Solr - User mailing list archive at Nabble.com.

Re: Find docs close to a date

2007-04-05 Thread Chris Hostetter
: My docs have a date field and I need to find the two docs with : a date which is closest to 2007-03-25T17:22:00Z. : : I use the following two queries to accomplish the task. : : date:{* TO 2007-03-25T17:22:00Z};date desc&start=0&rows=1 : date:{2007-03-25T17:22:00Z TO *};date asc&start=0&rows=1 :

Find docs close to a date

2007-04-02 Thread nick19701
{2007-03-25T17:22:00Z TO *};date asc&start=0&rows=1 However I need to make a lot of queries like these. I'm wondering if these kinds queries are expensive. Are there better alternatives for my task? -- View this message in context: http://www.nabble.com/Find-docs-close-to-a-date-tf