Re: Solr DisMax and 'New' DateField query syntax

2007-02-19 Thread realw5
Duuh! Stupid me. I didn't even try that. Thanks for such a quick replay. That should solve my problem..Thanks Hoss!! Chris Hostetter wrote: > > > the square brackets raen't anything new ... they are the standard Lucene > QUeryParser syntax for range queries, which have hte syntax... > fi

Re: Solr DisMax and 'New' DateField query syntax

2007-02-19 Thread Chris Hostetter
the square brackets raen't anything new ... they are the standard Lucene QUeryParser syntax for range queries, which have hte syntax... field:[low TO high] in conjuntion with the new DateMath, you need something along the lines of... timestamp:[NOW/DAY-1MONTH TO NOW/DAY+1DAY] ...

Solr DisMax and 'New' DateField query syntax

2007-02-19 Thread realw5
First off, solr has done nothing but wonders for me! So let me give everyone envolved a big cheers! Recently I discovered the 'new' DateField syntax options which allow "[NOW/DAY-1MONTH]" type querys. However when going to try out this I found a possible bug (or maybe I'm just missing something)