I have the following in solr
<str name="id">2</str> <arr name="parsed"> <str>2011-11-01 13:40:08.0</str> </arr> <arr name="person"> <str>Harsh Snehanshu | Apoorv Jain</str> </arr>
now if i want to search for jain
, simply i will use this query
http://192.168.1.135:8888/solr/MyCol/select/?q=*%3A*&version=2.2&start=0&rows=10&indent=on&facet=true&fq=person:jain
now the question is: how can i search for entries that have been parsed AFTER (greater than) 2011-11-01 13:00:00 or (between 2011-11-01 12:30:00 and 2011-11-01 13:30:00)??
Thanks for your help