RE: How to perform Date Range Search

2013-06-27 Thread raghavendra.k.rao
@gmail.com] Sent: Thursday, June 27, 2013 5:38 AM To: java-user@lucene.apache.org Subject: Re: How to perform Date Range Search Concatenating all your searchable fields into one is certainly what I'd do. Simple and efficient. And yes, you can perform range searches via the query parser

Re: How to perform Date Range Search

2013-06-27 Thread Ian Lea
Concatenating all your searchable fields into one is certainly what I'd do. Simple and efficient. And yes, you can perform range searches via the query parser - the example you give matches the one in the docs at http://lucene.apache.org/core/4_3_1/queryparser/org/apache/lucene/queryparser/classi

How to perform Date Range Search

2013-06-26 Thread raghavendra.k.rao
Hi, I have indexed a database table which has about 70 columns out of which 60 columns have been indexed and the rest have been stored. There are 70 million records in this table. This is a static table and hence I plan to index them at once and then perform the search on these indices. I perf